import { GlitchPartition } from "./GlitchPartition"; import { GlitchUnitemporalPartition } from "./GlitchUnitemporalPartition"; import { GlitchBitemporalPartition } from "./GlitchBitemporalPartition"; export default class GlitchDB { #private; constructor(baseDir: string, defaultCacheSize?: number); getPartitionByName(name: string): GlitchPartition; backup(outputDirectory: string): string; getPartition(name: string, indices?: string[], cacheSize?: number): GlitchPartition; getVersionedPartition(name: string, indices?: string[], cacheSize?: number): GlitchUnitemporalPartition; getBitemporalPartition(name: string, indices?: string[], cacheSize?: number): GlitchBitemporalPartition; } //# sourceMappingURL=GlitchDB.d.ts.map