UNPKG

400 BTypeScriptView Raw
1import { ExportResult } from '../ExportResult';
2export interface Exporter<T> {
3 export(arg: T, resultCallback: (result: ExportResult) => void): void;
4}
5/**
6 * @internal
7 * Shared functionality used by Exporters while exporting data, including suppresion of Traces.
8 */
9export declare function _export<T>(exporter: Exporter<T>, arg: T): Promise<ExportResult>;
10//# sourceMappingURL=exporter.d.ts.map
\No newline at end of file