export interface FetchRequestOptions { method: string; body?: string; headers: Headers; } export interface Headers { ['Content-Type']: string; ['X-api-key']: string; [key: string]: string; }