import { HttpResponse } from './httpResponse'; export interface Http { get(url: string, options?: any): Promise; post(url: string, payload: any, options?: any): Promise; put(url: string, payload: any, options?: any): Promise; delete(url: string, options?: any): Promise; }