File size: 258 Bytes
d8a4b7b
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
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>;
}