UNPKG

node-minidump-stackwalk

Version:
18 lines (17 loc) 666 B
/// <reference types="node" /> export interface MinidumpStackwalkOptions { machineReadable?: boolean; stackContents?: boolean; dumpingThreadOnly?: boolean; threadBrief?: boolean; } export declare enum Platform { darwin = "darwin", bullseye = "bullseye", win32 = "win32" } export declare function minidumpStackwalk(minidumpPath: string, symbolPaths: Array<string>, platform?: Platform, options?: MinidumpStackwalkOptions): Promise<{ stdout: string; stderr: string; }>; export declare function minidumpStackwalkSync(minidumpPath: string, symbolPaths: Array<string>, platform?: Platform, options?: MinidumpStackwalkOptions): Buffer;