UNPKG

@squarecloud/blob

Version:
15 lines (12 loc) 357 B
import { APIRequestInit } from '../types/api.js'; 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 };