import { Entity, EntityIdentifiable, Constructable } from '../entity'; declare type OrderType = 'asc' | 'desc'; /** * OData queries take this to determine the order of results. * @typeparam EntityT - */ export declare class Order implements EntityIdentifiable { _fieldName: string; orderType: OrderType; readonly _entityConstructor: Constructable; readonly _entity: EntityT; /** * Creates an instance of Order. * @param _fieldName - Field to order by * @param orderType - Type of ordering, can be 'asc' for ascending or 'desc' for descending */ constructor(_fieldName: string, orderType?: OrderType); } export {}; //# sourceMappingURL=order.d.ts.map