File size: 206 Bytes
a2b2aac
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import { SyncAdapter } from '../LowSync.js';
export declare class LocalStorage<T> implements SyncAdapter<T> {
    private key;
    constructor(key: string);
    read(): T | null;
    write(obj: T): void;
}