notbank
Version:
The Notbank for Node.js
15 lines (14 loc) • 432 B
TypeScript
import { RequestType } from "../serviceClient.js";
export declare class Requester {
#private;
constructor();
updateSessionToken(aptoken: string): void;
request<T1>(config: {
url: string;
requestType: RequestType;
params?: T1;
extraHeaders?: any;
}): Promise<Response>;
getHeaders(extraHeaders?: any): any;
getUrlWithSearchParams(endpoint: string, params?: any): string;
}