Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
23 lines
521 B
Plaintext
23 lines
521 B
Plaintext
/** JSDoc */
|
|
export interface StackFrame {
|
|
filename?: string;
|
|
function?: string;
|
|
module?: string;
|
|
platform?: string;
|
|
lineno?: number;
|
|
colno?: number;
|
|
abs_path?: string;
|
|
context_line?: string;
|
|
pre_context?: string[];
|
|
post_context?: string[];
|
|
in_app?: boolean;
|
|
instruction_addr?: string;
|
|
addr_mode?: string;
|
|
vars?: {
|
|
[key: string]: any;
|
|
};
|
|
debug_id?: string;
|
|
module_metadata?: any;
|
|
}
|
|
//# sourceMappingURL=stackframe.d.ts.map
|