import { Entity } from '../entity'; import { Link } from '../selectable/link'; import type { Orderable } from './orderable'; /** * Link to represent an order by on a linked entity. * @typeparam EntityT - Type of the entity to link from * @typeparam LinkedEntityT - Type of the entity to link to */ export declare class OrderLink { link: Link; orderBy: Orderable[]; readonly entityType: EntityT; readonly linkedEntityType: LinkedEntityT; /** * Creates an instance of OrderLink. * @param link - Link to the entity to order by * @param orderBy - A list of orderables based on the linked entity */ constructor(link: Link, orderBy: Orderable[]); } //# sourceMappingURL=order-link.d.ts.map