Skip to content

Commit e0434bd

Browse files
author
Sam Lin
committed
Add star type
1 parent 6b7f136 commit e0434bd

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

index.d.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,14 @@ export interface InsertReplaceValue {
4949
type: 'expr_list';
5050
value: any[];
5151
}
52+
export interface Star {
53+
type: 'star';
54+
value: '*';
55+
}
5256
export interface AggrFunc {
5357
type: 'aggr_func';
5458
name: string;
55-
args: ColumnRef | AggrFunc | null;
59+
args: ColumnRef | AggrFunc | Star | null;
5660
}
5761
export interface Column {
5862
expr: ColumnRef | AggrFunc;

0 commit comments

Comments
 (0)