UNPKG

get-stack-trace

Version:

Stack traces as an array of stack frames with source maps support.

9 lines 264 B
export type StackFrame = { arguments: readonly string[]; columnNumber: number | null; fileName: string | null; functionName: string | null; lineNumber: number | null; }; export type StackTrace = StackFrame[]; //# sourceMappingURL=types.d.ts.map