UNPKG

@candle-so/node

Version:

A library for interacting with the Candle API

9 lines (8 loc) 225 B
interface iFetch { method?: "GET" | "POST" | "PUT" | "DELETE"; url: string; data?: any; apiKey: string; } export declare const fetchWrapper: ({ method, url, data, apiKey }: iFetch) => Promise<any>; export {};