export declare const CacheType: Readonly<{ readonly RAM: "ram"; readonly REDIS: "redis"; }>; export type CacheType = (typeof CacheType)[keyof typeof CacheType]; /** * Declarative description of the workspace's file cache, the twin of * {@link IndexConfig} for the byte cache. Mirrors Python `CacheConfig`. */ export interface CacheConfig { type?: CacheType; limit?: string | number; maxDrainBytes?: number | null; } export interface RedisCacheConfig extends CacheConfig { url?: string; keyPrefix?: string; } //# sourceMappingURL=config.d.ts.map