We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c84a3e3 commit af0736eCopy full SHA for af0736e
shovel-config-ts/src/index.ts
@@ -48,7 +48,7 @@ export type FilterReference = {
48
49
export type Filter = {
50
op: FilterRefOp;
51
- arg: Hex[];
+ arg: string[];
52
};
53
54
export type BlockDataOptions =
@@ -92,7 +92,7 @@ export type BlockData = {
92
column: string;
93
} & ({
94
filter_op?: FilterArgOp;
95
- filter_arg?: Hex[];
+ filter_arg?: string[];
96
} | {
97
filter_op?: FilterRefOp;
98
filter_ref?: FilterReference;
@@ -122,7 +122,7 @@ export type EventInput = {
122
column?: string;
123
124
125
126
127
128
0 commit comments