Skip to content

Commit

Permalink
fix: Timeout type (#528)
Browse files Browse the repository at this point in the history
* fix: Timeout type

* fix: `tsconfig` includes

* chore: revert `tsconfig.json` change

* fix: Add `@babel/plugin-proposal-private-methods` to fix docs error
  • Loading branch information
d-goog authored Oct 5, 2023
1 parent 7707440 commit 788344f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@compodoc/compodoc": "^1.1.9",
"@types/execa": "^0.9.0",
"@types/extend": "^3.0.1",
Expand Down
2 changes: 1 addition & 1 deletion src/http2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const DEBUG = !!process.env.HTTP2_DEBUG;
*/
export interface SessionData {
session: http2.ClientHttp2Session;
timeoutHandle?: NodeJS.Timer;
timeoutHandle?: NodeJS.Timeout;
}

/**
Expand Down

0 comments on commit 788344f

Please sign in to comment.