export interface FetchResponse { ok: boolean; url: string; status: number; statusText: string; headers: Headers; redirected: boolean; json: () => Promise; text: () => Promise; arrayBuffer: () => Promise; }