mywork / lib /lowdb /adapters /TextFile.d.ts
DeeCeeXxx's picture
Upload 199 files
6c07b9a 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>;
}