mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-09 19:44:56 +02:00
13 lines
329 B
TypeScript
13 lines
329 B
TypeScript
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 { }
|