Files
Basilosaurusrex f027651f9b main repo
2025-11-24 18:09:40 +01:00

9 lines
288 B
TypeScript

import { SupportedStorage } from './types';
/**
* Returns a localStorage-like object that stores the key-value pairs in
* memory.
*/
export declare function memoryLocalStorageAdapter(store?: {
[key: string]: string;
}): SupportedStorage;
//# sourceMappingURL=local-storage.d.ts.map