Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Add null type to signal in RequestInit #2455

Merged
merged 1 commit into from
Nov 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/types/fetch.test-d.ts
Expand Up @@ -42,7 +42,7 @@ expectType<HeadersInit | undefined>(requestInit.headers)
expectType<BodyInit | undefined>(requestInit.body)
expectType<RequestRedirect | undefined>(requestInit.redirect)
expectType<string | undefined>(requestInit.integrity)
expectType<AbortSignal | undefined>(requestInit.signal)
expectType<AbortSignal | null | undefined>(requestInit.signal)
expectType<RequestCredentials | undefined>(requestInit.credentials)
expectType<RequestMode | undefined>(requestInit.mode)
expectType<string | undefined>(requestInit.referrer);
Expand Down
2 changes: 1 addition & 1 deletion types/fetch.d.ts
Expand Up @@ -108,7 +108,7 @@ export interface RequestInit {
body?: BodyInit
redirect?: RequestRedirect
integrity?: string
signal?: AbortSignal
signal?: AbortSignal | null
credentials?: RequestCredentials
mode?: RequestMode
referrer?: string
Expand Down