Skip to content

Commit 39f83b6

Browse files
authoredOct 12, 2022
Improve TypeScript 4.9 compatibility (#2163)
1 parent 623229f commit 39f83b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎source/core/timed-out.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,6 @@ export default function timedOut(request: ClientRequest, delays: Delays, options
188188
declare module 'http' {
189189
// eslint-disable-next-line @typescript-eslint/consistent-type-definitions -- This has to be an `interface` to be able to be merged.
190190
interface ClientRequest {
191-
[reentry]: boolean;
191+
[reentry]?: boolean;
192192
}
193193
}

0 commit comments

Comments
 (0)
Please sign in to comment.