Files
2026-02-05 15:27:49 +08:00

8 lines
223 B
TypeScript

import { SyncAdapter } from '../../core/Low.js';
export declare class WebStorage<T> implements SyncAdapter<T> {
#private;
constructor(key: string, storage: Storage);
read(): T | null;
write(obj: T): void;
}