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