UNPKG

448 BTypeScriptView Raw
1/** JSDoc */
2export interface StackFrame {
3 filename?: string;
4 function?: string;
5 module?: string;
6 platform?: string;
7 lineno?: number;
8 colno?: number;
9 abs_path?: string;
10 context_line?: string;
11 pre_context?: string[];
12 post_context?: string[];
13 in_app?: boolean;
14 instruction_addr?: string;
15 addr_mode?: string;
16 vars?: {
17 [key: string]: any;
18 };
19}
20//# sourceMappingURL=stackframe.d.ts.map
\No newline at end of file