interface IExporterTransport {
    send(data: Uint8Array, timeoutMillis: number): Promise<ExportResponse>;
    shutdown(): void;
}

Methods

Methods