UNPKG

@vulcan-sql/core

Version:
16 lines (15 loc) 535 B
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;