doc.yeswiki.pro/node_modules/@algolia/cache-in-memory/dist/cache-in-memory.d.ts

13 lines
329 B
TypeScript
Raw Normal View History

2023-05-20 16:37:42 +00:00
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 { }