bitso-bert-api
Version:
<h1 align="center">bitso-bert-api</h1>
7 lines (6 loc) • 868 B
TypeScript
export declare const publicGet: <T>(path: string, queryParams?: Record<string, any> | undefined, bodyParams?: Record<string, any> | undefined) => Promise<T>;
export declare const publicPost: <T>(path: string, queryParams?: Record<string, any> | undefined, bodyParams?: Record<string, any> | undefined) => Promise<T>;
export declare const privateGet: <T>(path: string, queryParams?: Record<string, any> | undefined, bodyParams?: Record<string, any> | undefined) => Promise<T>;
export declare const privateDelete: <T>(path: string, queryParams?: Record<string, any> | undefined, bodyParams?: Record<string, any> | undefined) => Promise<T>;
export declare const privatePost: <T>(path: string, queryParams?: Record<string, any> | undefined, bodyParams?: Record<string, any> | undefined) => Promise<T>;
export declare const basicGet: <T>(path: string) => Promise<T>;