11 lines
400 B
TypeScript
11 lines
400 B
TypeScript
import { OrderBy } from "./OrderBy";
|
|
import { OrderType } from "./OrderType";
|
|
export declare class Order {
|
|
readonly orderBy: OrderBy;
|
|
readonly orderType: OrderType;
|
|
constructor(orderBy: OrderBy, orderType: OrderType);
|
|
static none(): Order;
|
|
static fromPrimitives(orderBy: string | null, orderType: string | null): Order;
|
|
isNone(): boolean;
|
|
}
|
|
//# sourceMappingURL=Order.d.ts.map
|