import { PersistentStoreAdapter, Updater } from './types'; export default class FileStoreAdapter implements PersistentStoreAdapter { private fileData; private mutex; constructor(path: string); del(key: string): Promise; get(key: string): Promise; list(): Promise; set(key: string, value: any): Promise; update(key: string, updater: Updater): Promise; }