UNPKG

applicationinsights

Version:

Microsoft Application Insights module for Node.js

21 lines (20 loc) 589 B
import { LogApi } from "../shim/logsApi"; export declare class AutoCollectExceptions { private _exceptionListenerHandle?; private _rejectionListenerHandle?; private _client; constructor(client: LogApi); shutdown(): void; private _handleException; } export declare class _StackFrame { sizeInBytes: number; level: number; method: string; assembly: string; fileName: string; line: number; private _baseSize; constructor(frame: string, level: number); } export declare function parseStack(stack: any): _StackFrame[];