billoget-sdk
Version:
Official Node.js SDK for Billoget Public API - Complete budget, customer, and product management with approval workflows and UBS support
15 lines • 366 B
TypeScript
export interface BillogetConfig {
apiKey: string;
baseUrl?: string;
timeout?: number;
retries?: number;
debug?: boolean;
}
export interface RequestConfig {
method: "GET" | "POST" | "PUT" | "DELETE";
url: string;
data?: any;
params?: Record<string, any>;
headers?: Record<string, string>;
}
//# sourceMappingURL=config.d.ts.map