UNPKG

refql

Version:

A Node.js and Deno library for composing and running SQL queries.

10 lines (9 loc) 302 B
import Operation from "./Operation"; interface OrderBy<Params = any> extends Operation<Params> { descending: boolean; } declare function OrderBy<Params = any>(descending?: boolean): OrderBy<Params>; declare namespace OrderBy { var isOrderBy: (x: any) => x is OrderBy; } export default OrderBy;