projek1 / lib /lowdb /adapters /TextFileSync.d.ts
devstok's picture
Upload folder using huggingface_hub
d8a4b7b 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;
}