UNPKG

azure-kusto-ingest

Version:
19 lines 1.06 kB
import { KustoConnectionStringBuilder } from "azure-kusto-data"; import { StreamDescriptor } from "./descriptors.js"; import { FileDescriptor } from "./fileDescriptor.browser.js"; import { IngestionPropertiesInput } from "./ingestionProperties.js"; import { KustoIngestClientBase } from "./ingestClientBase.js"; import { IngestionResult } from "./ingestionResult.js"; export declare class KustoIngestClient extends KustoIngestClientBase { constructor(kcsb: string | KustoConnectionStringBuilder, defaultProps?: IngestionPropertiesInput, autoCorrectEndpoint?: boolean); /** * Use string for Node.js and Blob in browser */ ingestFromFile(file: Blob | FileDescriptor, ingestionProperties?: IngestionPropertiesInput): Promise<IngestionResult>; /** * Use Readable for Node.js and ArrayBuffer in browser */ ingestFromStream(stream: ArrayBuffer | StreamDescriptor, ingestionProperties?: IngestionPropertiesInput): Promise<IngestionResult>; } export default KustoIngestClient; //# sourceMappingURL=ingestClient.browser.d.ts.map