@sentry/node
Version:
Official Sentry SDK for Node.js
10 lines (9 loc) • 461 B
TypeScript
import { StackFrame } from '@sentry/types';
/**
* Captures stack traces from the Node debugger.
* @param url The URL to connect to
* @param callback A callback that will be called with the stack frames
* @returns A function that triggers the debugger to pause and capture a stack trace
*/
export declare function captureStackTrace(url: string, callback: (frames: StackFrame[]) => void): Promise<() => void>;
//# sourceMappingURL=debugger.d.ts.map