@squarecloud/blob
Version:
Official Square Cloud Blob SDK for NodeJS
15 lines (12 loc) • 358 B
text/typescript
import { APIRequestInit } from '../types/api.mjs';
declare class APIManager {
private readonly apiKey;
readonly baseUrl: string;
constructor(apiKey: string);
request<T>(path: string, options?: APIRequestInit): Promise<{
status: "success";
response?: T | undefined;
}>;
private parseOptions;
}
export { APIManager };