Files
oneclickvirt.github.io/node_modules/@algolia/cache-browser-local-storage/dist/cache-browser-local-storage.d.ts
spiritlhl 6f5966067d Update
2023-06-20 00:59:07 +00:00

17 lines
396 B
TypeScript

import { Cache } from '@algolia/cache-common';
export declare type BrowserLocalStorageOptions = {
/**
* The cache key.
*/
readonly key: string;
/**
* The native local storage implementation.
*/
readonly localStorage?: Storage;
};
export declare function createBrowserLocalStorageCache(options: BrowserLocalStorageOptions): Cache;
export { }