/** * Type definitions for caching system */ export interface CacheEntry { data: any; timestamp: number; } //# sourceMappingURL=cache.d.ts.map