Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
jajbshjahavahh
GitHub Repository: jajbshjahavahh/Gojo-Satoru
Path: blob/master/lib/lowdb/adapters/TextFileSync.d.ts
2591 views
1
import { SyncAdapter } from '../LowSync.js';
2
export declare class TextFileSync implements SyncAdapter<string> {
3
private tempFilename;
4
private filename;
5
constructor(filename: string);
6
read(): string | null;
7
write(str: string): void;
8
}
9
10