Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
MR414N-ID
GitHub Repository: MR414N-ID/botku2
Path: blob/master/lib/lowdb/adapters/TextFileSync.d.ts
1126 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