StableBOT / lib /lowdb /adapters /MemorySync.d.ts
RamaZyx's picture
Upload folder using huggingface_hub
a2b2aac verified
import { SyncAdapter } from '../LowSync.js';
export declare class MemorySync<T> implements SyncAdapter<T> {
private data;
read(): T | null;
write(obj: T): void;
}