Files
est-frame/node_modules/@algolia/cache-in-memory/dist/cache-in-memory.d.ts
2025-10-22 05:38:27 +00:00

13 lines
329 B
TypeScript
Executable File

import { Cache } from '@algolia/cache-common';
export declare function createInMemoryCache(options?: InMemoryCacheOptions): Cache;
export declare type InMemoryCacheOptions = {
/**
* If keys and values should be serialized using `JSON.stringify`.
*/
readonly serializable?: boolean;
};
export { }