ravendb
Version:
RavenDB client for Node.js
15 lines • 701 B
TypeScript
import { EtlConfiguration } from "../EtlConfiguration.js";
import { EtlType, OlapConnectionString } from "../ConnectionString.js";
import { OlapEtlFileFormat } from "./OlapEtlFileFormat.js";
import { OlapEtlTable } from "./OlapEtlTable.js";
import { DocumentConventions } from "../../../Conventions/DocumentConventions.js";
export declare class OlapEtlConfiguration extends EtlConfiguration<OlapConnectionString> {
runFrequency: string;
format: OlapEtlFileFormat;
customPartitionValue: string;
olapTables: OlapEtlTable[];
etlType: EtlType;
serialize(conventions: DocumentConventions): object;
private serializeOlapTable;
}
//# sourceMappingURL=OlapEtlConfiguration.d.ts.map