import { OperationType } from './OperationType'; import { Document } from './Document'; export interface IDatabase { document(name: string, options?: { operationMode?: OperationType; configuration?: any; }): Document; }