export declare type Scalar = string | number | boolean; export declare type Api = string; export declare type Host = string; export declare type Params = Scalar[]; export interface Query { [key: string]: Scalar | Scalar[]; } export declare type Body = any; export interface Headers { [key: string]: Scalar | Scalar[]; } export declare enum Method { GET = "GET", POST = "POST", PUT = "PUT", PATCH = "PATCH", DELETE = "DELETE", } export declare enum LogLevel { none = "none", simple = "simple", full = "full", }