printer-notifications/node_modules/eslint-plugin-svelte/lib/utils/cache.d.ts
2023-11-13 16:10:04 -05:00

5 lines
125 B
TypeScript

export declare function createCache<T>(): {
get: (key: string) => T | null;
set: (key: string, value: T) => void;
};