e2ed
Version:
E2E testing framework over Playwright
12 lines (11 loc) • 378 B
TypeScript
import type { StackFrame } from '../../types/internal';
/**
* For using arguments.callee we need to eval this function in non-strict mode.
*/
declare const getStackTraceBody: () => readonly StackFrame[] | undefined;
/**
* Get V8 inner stack trace.
* {@link https://www.npmjs.com/package/callsite}
*/
export declare const getStackTrace: typeof getStackTraceBody;
export {};