workano-js-sdk
Version:
Workano Communications SDK - A modern JavaScript SDK for WebRTC and VoIP integration.
19 lines • 529 B
TypeScript
declare const customApi: {
post: ({ path, headers, ...options }: {
path: string;
headers?: any;
[key: string]: any;
}) => Promise<Response>;
put: ({ path, headers, ...options }: {
path: string;
headers?: any;
[key: string]: any;
}) => Promise<Response>;
get: ({ path, headers, ...options }: {
path: string;
headers?: any;
[key: string]: any;
}) => Promise<Response>;
};
export default customApi;
//# sourceMappingURL=fetcher.d.ts.map