export interface IJitzHttpClient { get: (url: string, header?: any) => any; post: (url: string, data: any, header?: any) => any; } export default class JitzHttpClient implements IJitzHttpClient { private header; private _client; constructor(); get: (url: string, header?: any) => any; post: (url: string, data: any, header?: any) => any; }