Skip to content

Commit

Permalink
fix: use @types/node 10.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bohdanhusak committed Nov 30, 2021
1 parent 4b46a22 commit 9651458
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
},
"description": "Gracefully terminates HTTP(S) server.",
"devDependencies": {
"@types/node": "^16.0.0",
"@types/node": "^10.0.0",
"agentkeepalive": "^4.1.4",
"ava": "^3.15.0",
"babel-plugin-istanbul": "^6.0.0",
Expand Down
2 changes: 1 addition & 1 deletion src/factories/createInternalHttpTerminator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import http from 'http';
import waitFor from 'p-wait-for';
import type {
Duplex,
} from 'node:stream';
} from 'stream';
import Logger from '../Logger';
import type {
HttpTerminatorConfigurationInput,
Expand Down
2 changes: 1 addition & 1 deletion src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import type {
} from 'https';
import type {
Duplex,
} from 'node:stream';
} from 'stream';
import type {
Merge,
} from 'type-fest';
Expand Down

0 comments on commit 9651458

Please # to comment.