7 lines
121 B
TypeScript
7 lines
121 B
TypeScript
|
declare global {
|
||
|
function nativeFetch(
|
||
|
input: RequestInfo | URL,
|
||
|
init?: RequestInit,
|
||
|
): Promise<Response>;
|
||
|
}
|