Skip to content

Commit a1cb5ce

Browse files
authored
Merge pull request #3 from jayvdb/add-types
Add TypeScript types definition
2 parents 0947a06 + f799468 commit a1cb5ce

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

lib/exit.d.ts

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/// <reference types="node" />
2+
3+
/**
4+
* A replacement for process.exit that ensures stdio are fully drained before exiting.
5+
*/
6+
declare function exit(code: number, streams?: [NodeJS.WritableStream, NodeJS.WritableStream]): void;
7+
8+
export = exit;

package.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,18 @@
22
"name": "exit-x",
33
"description": "A replacement for process.exit that ensures stdio are fully drained before exiting.",
44
"version": "0.2.1",
5-
"homepage": "https://github.com/cowboy/node-exit",
5+
"homepage": "https://github.com/gruntjs/node-exit-x",
66
"author": "Grunt Development Team (https://gruntjs.com/development-team)",
77
"repository": {
88
"type": "git",
99
"url": "git://github.com/gruntjs/node-exit-x.git"
1010
},
1111
"bugs": {
12-
"url": "https://github.com/gruntjs/node-exit/issues"
12+
"url": "https://github.com/gruntjs/node-exit-x/issues"
1313
},
1414
"license": "MIT",
15-
"main": "lib/exit",
15+
"main": "lib/exit.js",
16+
"types": "lib/exit.d.ts",
1617
"engines": {
1718
"node": ">= 0.8.0"
1819
},

0 commit comments

Comments
 (0)