We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 555cb16 commit aa5a76bCopy full SHA for aa5a76b
1 file changed
types.d.ts
@@ -100,13 +100,16 @@ export interface ValueExpr<T = string | number | boolean> {
100
value: T;
101
}
102
103
+export type SortDirection = 'ASC' | 'DESC';
104
+
105
export interface ColumnRefItem {
106
type: "column_ref";
107
table: string | null;
108
column: string | { expr: ValueExpr };
109
options?: ExprList;
110
loc?: LocationRange;
111
collate?: { collate: CollateExpr };
112
+ order_by?: SortDirection | null;
113
114
export interface ColumnRefExpr {
115
type: "expr";
0 commit comments