/** * Handles storage and accessing of values * * In this case, we use it to store compiled template functions * Indexed by their `name` or `filename` */ export declare class Cacher { private cache; constructor(cache: Record); define(key: string, val: T): void; get(key: string): T; remove(key: string): void; reset(): void; load(cacheObj: Record): void; } //# sourceMappingURL=storage.d.ts.map