import { ValueConverter } from "@odata2ts/converter-api"; import { PrimitiveCollection } from "../primitve-collection/PrimitiveCollectionModel"; import { QFilterExpression } from "../QFilterExpression"; import { QOrderByExpression } from "../QOrderByExpression"; import { LambdaOperatorType } from "./base/LambdaOperatorType"; import { QEntityPathModel } from "./QPathModel"; export declare class QCollectionPath implements QEntityPathModel { protected path: string; protected qEntityFn: () => new (prefix?: string, converter?: ValueConverter) => CollectionType; protected __converter?: ValueConverter | undefined; constructor(path: string, qEntityFn: () => new (prefix?: string, converter?: ValueConverter) => CollectionType, __converter?: ValueConverter | undefined); getPath(): string; getEntity(withPrefix?: boolean): CollectionType; isCollectionType(): boolean; private lambdaFunction; any(fn?: LambdaOperatorType, prefix?: string): QFilterExpression; all(fn?: LambdaOperatorType, prefix?: string): QFilterExpression; /** * Sort by total count of these collection items in ascending order. */ countAsc(): QOrderByExpression; /** * Sort by total count of these collection items in ascending order. */ countDesc(): QOrderByExpression; }