@vulcan-sql/core
Version:
Core package of VulcanSQL
16 lines (15 loc) • 535 B
TypeScript
export declare enum CacheLayerStoreFormatType {
parquet = "parquet"
}
export declare enum CacheLayerStoreLoaderType {
duckdb = "duckdb"
}
export interface ICacheLayerOptions {
type?: CacheLayerStoreFormatType | string;
folderPath?: string;
loader?: CacheLayerStoreLoaderType | string;
}
export declare const cacheProfileName = "vulcan.cache";
export declare const cacheLayerPersistentFileName: string;
export declare const vulcanCacheSchemaName = "vulcan";
export declare const defaultCacheLayerFolderPath: string;