File size: 224 Bytes
47ab1ce
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import { Adapter } from '../Low.js';
export declare class JSONFile<T> implements Adapter<T> {
    private adapter;
    constructor(filename: string);
    read(): Promise<T | null>;
    write(obj: T): Promise<void>;
}