import { ObjectTypeDescriptor, EntitiesCollectionObject } from "../../../Types/index.js"; import { Lazy } from "../../Lazy.js"; export interface ILazyLoaderWithInclude { /** * Begin a load while including the specified path */ include(path: string): ILazyLoaderWithInclude; /** * Loads the specified ids. */ load(ids: string[]): Lazy>; /** * Loads the specified ids. */ load(ids: string[], clazz: ObjectTypeDescriptor): Lazy>; /** * Loads the specified entity with the specified id. */ load(id: string, clazz?: ObjectTypeDescriptor): Lazy; /** * Loads the specified entity with the specified id. */ load(id: string): Lazy; } //# sourceMappingURL=ILazyLoaderWithInclude.d.ts.map