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