@embrace-io/web-sdk
Version:
20 lines (19 loc) • 452 B
JavaScript
//#region src/exporters/BaseFetchExporter/BaseFetchExporter.ts
var BaseFetchExporter = class {
_delegate;
constructor(_delegate) {
this._delegate = _delegate;
}
export(items, resultCallback) {
this._delegate.export(items, resultCallback);
}
forceFlush() {
return this._delegate.forceFlush();
}
shutdown() {
return this._delegate.shutdown();
}
};
//#endregion
export { BaseFetchExporter };
//# sourceMappingURL=BaseFetchExporter.js.map