export interface HttpClient { post(url: string, body: Object): Promise; get(url: string, options?: { headers?: { [header: string]: string | string[]; }; params?: { [param: string]: string | number | boolean | ReadonlyArray; }; }): Promise; }