Page MenuHomePhorge

fetch.d.ts
No OneTemporary

Size
282 B
Referenced Files
None
Subscribers
None

fetch.d.ts

interface FetchResponse {
status: number;
ok: boolean;
body: string;
json(): unknown;
}
interface FetchOptions {
method?: string;
headers?: Record<string, string>;
body?: string;
}
declare function fetch(url: string, options?: FetchOptions): Promise<FetchResponse>;

File Metadata

Mime Type
text/plain
Expires
Sun, May 3, 8:09 AM (1 d, 13 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
517854
Default Alt Text
fetch.d.ts (282 B)

Event Timeline