mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
10 lines
297 B
TypeScript
10 lines
297 B
TypeScript
// Type definitions for exit 0.1.2
|
|
// Project: https://github.com/cowboy/node-exit
|
|
// Definitions by: Bart van der Schoor <https://github.com/Bartvds>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare module 'exit' {
|
|
function exit(code: number): void;
|
|
export = exit;
|
|
}
|