import Collection from './collection'; import { Item } from '../types/Item'; import { IStorageAdapter } from './IStorageAdapter'; export default class AdapterFile implements IStorageAdapter { get name(): "AdapterFile"; get file(): string; collection: Collection; clone(): AdapterFile; init(collection: Collection): this; restore(name?: string): Promise; store(name: string): Promise; }