import { DbStore, Document } from "../../modules/db/exports"; export type StoreProviderOptions = { branch?: string; fixedBranch?: boolean; }; export interface IStoreProvider { store(scope?: string): DbStore; document(name: string, options: any): Document; clone(options?: StoreProviderOptions): IStoreProvider; }