mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
9 lines
480 B
TypeScript
9 lines
480 B
TypeScript
// Type definitions for heapdump 0.3
|
|
// Project: https://github.com/bnoordhuis/node-heapdump
|
|
// Definitions by: weekens <https://github.com/weekens>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.1
|
|
|
|
export function writeSnapshot(dumpFileName?: string, callback?: (err: Error | null, filename: string | undefined) => void): void;
|
|
export function writeSnapshot(callback: (err: Error | null, filename: string | undefined) => void): void;
|