growwapi
Version:
NodeJS SDK for Groww trading APIs
15 lines (14 loc) • 348 B
TypeScript
export declare class HttpClient {
private baseUrl;
private basePath;
constructor(baseUrl: string, basePath?: string);
private url;
get(path: string): Promise<{
[key: string]: any;
}>;
post(path: string, body: any): Promise<{
[key: string]: any;
}>;
private headers;
private handleResponse;
}