printer-notifications/node_modules/eslint-plugin-svelte/lib/utils/cache.d.ts

5 lines
125 B
TypeScript
Raw Normal View History

2023-11-13 21:10:04 +00:00
export declare function createCache<T>(): {
get: (key: string) => T | null;
set: (key: string, value: T) => void;
};