diff --git a/fetch/@types/index.d.ts b/fetch/@types/index.d.ts index ed20771..214a63f 100644 --- a/fetch/@types/index.d.ts +++ b/fetch/@types/index.d.ts @@ -116,7 +116,7 @@ declare class Body { } type RequestRedirect = 'error' | 'follow' | 'manual'; -type RequestInfo = string | Body; +type RequestInfo = string | Body | URL; declare class Request extends Body { constructor(input: RequestInfo, init?: RequestInit);