import { DocumentType } from "../../DocumentAbstractions.js"; import { EntitiesCollectionObject } from "../../../Types/index.js"; export interface ILoaderWithInclude { /** * Includes the specified path. */ include(path: string): ILoaderWithInclude; /** * Loads the specified id. */ load(id: string, documentType: DocumentType): Promise; /** * Loads the specified id. */ load(id: string, documentType?: DocumentType): Promise; /** * Loads the specified ids. */ load(ids: string[], documentType?: DocumentType): Promise>; } //# sourceMappingURL=ILoaderWithInclude.d.ts.map