export default interface FetcherInterface { get(url: string, options: object): Promise, post(url: string, body: string, options: object): Promise, put(url: string, body: string, options: object): Promise, patch(url: string, body: string, options: object): Promise, delete(url: string, options: object): Promise }