projek3 / lib /lowdb /adapters /TextFileSync.d.ts
devstok's picture
Upload folder using huggingface_hub
47ab1ce verified
raw
history blame contribute delete
262 Bytes
import { SyncAdapter } from '../LowSync.js';
export declare class TextFileSync implements SyncAdapter<string> {
private tempFilename;
private filename;
constructor(filename: string);
read(): string | null;
write(str: string): void;
}