You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
313 B

/**
* Given a line from a metro stack trace, this can attempt to extract
* the file name or URL, omitting the code location.
* Can be used to filter files from the stacktrace like LogBox.
*
* @param traceLine
*/
export declare function matchFileNameOrURLFromStackTrace(traceMessage: string): string | null;