UNPKG

@apillon/sdk

Version:

▶◀ Apillon SDK for NodeJS ▶◀

16 lines 569 B
import { ApillonConfig } from './apillon'; import { LogLevel } from '../types/apillon'; export declare class ApillonApi { private static instance; static initialize(apiConfig?: ApillonConfig): { key?: string; secret?: string; apiUrl?: string; logLevel?: LogLevel; debug?: boolean; }; static get<T>(url: string, config?: any): Promise<T>; static post<T>(url: string, body?: any, config?: any): Promise<T>; static delete<T>(url: string, config?: any): Promise<T>; } //# sourceMappingURL=apillon-api.d.ts.map