1
0
silverbullet/plug-api/lib/fetch.ts

7 lines
121 B
TypeScript
Raw Normal View History

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