We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0887be6 + 450009e commit 59f78c2Copy full SHA for 59f78c2
index.d.ts
@@ -19,6 +19,16 @@ export function walkStack(
19
commandArgs?: string[]
20
): void
21
22
+/**
23
+ * Get the contents of the minidump file in somewhat readable text(not yet symbolicated).
24
+ * The `callback` would be called with `callback(error, report)` upon completion.
25
+ */
26
+export function dump(
27
+ minidump: string,
28
+ callback: (err: Error, result: Buffer) => void,
29
+ commandArgs?: string[],
30
+): void
31
+
32
/**
33
* Dump debug symbols in minidump format from `binaryPath`
34
* The `callback` would be called with `callback(error, minidump)` upon completion.
0 commit comments