export interface HatHttpParameters {
    [key: string]: string;
}
export interface IHttpResponse<T> extends Response {
    parsedBody?: T;
    token?: string | null;
}
