projek1 / lib /lowdb /adapters /TextFile.d.ts
devstok's picture
Upload folder using huggingface_hub
d8a4b7b verified
raw
history blame contribute delete
258 Bytes
import { Adapter } from '../Low.js';
export declare class TextFile implements Adapter<string> {
private filename;
private writer;
constructor(filename: string);
read(): Promise<string | null>;
write(str: string): Promise<void>;
}