export interface IHttpClient { get(uri: string, parseJson?: boolean): Promise; post(uri: string, body: I): Promise; }