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

Add typing for Response.redirect(url, status) #1169

Merged
merged 1 commit into from Nov 5, 2021
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
1 change: 1 addition & 0 deletions @types/index.d.ts
Expand Up @@ -157,6 +157,7 @@ export class Response extends BodyMixin {
clone(): Response;

static error(): Response;
static redirect(url: string, status?: number): Response;
}

export class FetchError extends Error {
Expand Down
3 changes: 3 additions & 0 deletions @types/index.test-d.ts
Expand Up @@ -88,6 +88,9 @@ async function run() {
new Map([['a', null], ['3', null]]).keys()
]);
/* eslint-enable no-new */

expectType<Response>(Response.redirect('https://google.com'));
expectType<Response>(Response.redirect('https://google.com', 301));
}

run().finally(() => {
Expand Down