Skip to content

Commit 7b86e94

Browse files
fix: release "Allow URL class object as an argument for fetch()" #1696 (#1716)
1 parent 8ced5b9 commit 7b86e94

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

@types/index.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ export type RequestRedirect = 'error' | 'follow' | 'manual';
147147
export type ReferrerPolicy = '' | 'no-referrer' | 'no-referrer-when-downgrade' | 'same-origin' | 'origin' | 'strict-origin' | 'origin-when-cross-origin' | 'strict-origin-when-cross-origin' | 'unsafe-url';
148148
export type RequestInfo = string | Request;
149149
export class Request extends BodyMixin {
150-
constructor(input: RequestInfo | URL, init?: RequestInit);
150+
constructor(input: URL | RequestInfo, init?: RequestInit);
151151

152152
/**
153153
* Returns a Headers object consisting of the headers associated with request. Note that headers added in the network layer by the user agent will not be accounted for in this object, e.g., the "Host" header.
@@ -216,4 +216,4 @@ export class AbortError extends Error {
216216
}
217217

218218
export function isRedirect(code: number): boolean;
219-
export default function fetch(url: RequestInfo | URL, init?: RequestInit): Promise<Response>;
219+
export default function fetch(url: URL | RequestInfo, init?: RequestInit): Promise<Response>;

0 commit comments

Comments
 (0)