@sentry/utils
Version:
Utilities for all Sentry JavaScript SDKs
10 lines (9 loc) • 446 B
TypeScript
import { StackLineParserFn } from '@sentry/types';
export type GetModuleFn = (filename: string | undefined) => string | undefined;
/**
* Does this filename look like it's part of the app code?
*/
export declare function filenameIsInApp(filename: string, isNative?: boolean): boolean;
/** Node Stack line parser */
export declare function node(getModule?: GetModuleFn): StackLineParserFn;
//# sourceMappingURL=node-stack-trace.d.ts.map