@voiceflow/fetch
Version:
Voiceflow fetch wrapper and error handling for SDKs
12 lines • 446 B
JavaScript
import * as undici from 'undici';
import { FetchClient as BaseFetchClient } from './fetch.client.js';
export * from './client-configuration.interface.js';
export * from './fetch.interface.js';
export * from './http-method.enum.js';
export * from './request-options.interface.js';
export class FetchClient extends BaseFetchClient {
constructor(config = {}) {
super(undici.fetch, config);
}
}
//# sourceMappingURL=main.undici.js.map