UNPKG

@visulima/error

Version:

Error with more than just a message, stacktrace parsing.

11 lines (10 loc) 310 B
export type TraceType = "eval" | "internal" | "native" | undefined; export interface Trace { column: number | undefined; evalOrigin?: Trace | undefined; file: string | undefined; line: number | undefined; methodName: string | undefined; raw: string; type?: TraceType | undefined; }