Skip to content

Commit 9d75f18

Browse files
authored
fix: walkStack result type (#37)
1 parent 6ed6deb commit 9d75f18

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ export function addSymbolPath(...paths: string[]): void
99
*/
1010
export function walkStack(
1111
minidump: string,
12-
callback: (err: Error, result: string) => void,
12+
callback: (err: Error, result: Buffer) => void,
1313
commandArgs?: string[]
1414
): void
1515
export function walkStack(
1616
minidump: string,
1717
symbolPaths: string[],
18-
callback: (err: Error, result: string) => void,
18+
callback: (err: Error, result: Buffer) => void,
1919
commandArgs?: string[]
2020
): void
2121

0 commit comments

Comments
 (0)