import { DocumentType } from "../../DocumentAbstractions"; import { EntitiesCollectionObject } from "../../../Types"; export interface ILoaderWithInclude { include(path: string): ILoaderWithInclude; load(id: string, documentType: DocumentType): Promise; load(id: string, documentType?: DocumentType): Promise; load(ids: string[], documentType?: DocumentType): Promise>; }