UNPKG

estilo

Version:

Create color schemes for Vim, NeoVim, Airline and Lightline

16 lines 452 B
/** * 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<T> { private cache; constructor(cache: Record<string, T>); define(key: string, val: T): void; get(key: string): T; remove(key: string): void; reset(): void; load(cacheObj: Record<string, T>): void; } //# sourceMappingURL=storage.d.ts.map