export interface IAPIHost { prod: string; test: string; dev: string; } export interface IHeaders { [key: string]: any; } export interface IRequestOptions { method?: 'POST' | 'GET' | 'DELETE' | 'PUT' | 'PATCH'; headers?: IHeaders; query?: { [key: string]: any }; body?: { [key: string]: any }; form?: FormData | any; no_token?: boolean; api?: boolean; }