Skip to content

Commit af0736e

Browse files
authored
shovel-config-ts: allow filter_arg to take empty string (#280)
1 parent c84a3e3 commit af0736e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

shovel-config-ts/src/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export type FilterReference = {
4848

4949
export type Filter = {
5050
op: FilterRefOp;
51-
arg: Hex[];
51+
arg: string[];
5252
};
5353

5454
export type BlockDataOptions =
@@ -92,7 +92,7 @@ export type BlockData = {
9292
column: string;
9393
} & ({
9494
filter_op?: FilterArgOp;
95-
filter_arg?: Hex[];
95+
filter_arg?: string[];
9696
} | {
9797
filter_op?: FilterRefOp;
9898
filter_ref?: FilterReference;
@@ -122,7 +122,7 @@ export type EventInput = {
122122
column?: string;
123123
} & ({
124124
filter_op?: FilterArgOp;
125-
filter_arg?: Hex[];
125+
filter_arg?: string[];
126126
} | {
127127
filter_op?: FilterRefOp;
128128
filter_ref?: FilterReference;

0 commit comments

Comments
 (0)