Skip to content

Commit

Permalink
Adjusts val types
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-s-molina committed Aug 25, 2022
1 parent 10f50ad commit a115181
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@ export type BaseQueryObjectFilterClause = {

export type BinaryQueryObjectFilterClause = BaseQueryObjectFilterClause & {
op: BinaryOperator;
val: string | number | boolean | null | Date;
val: string | number | boolean;
formattedVal?: string;
};

export type SetQueryObjectFilterClause = BaseQueryObjectFilterClause & {
op: SetOperator;
val: (string | number | boolean | null | Date)[];
val: (string | number | boolean)[];
formattedVal?: string[];
};

Expand Down

0 comments on commit a115181

Please sign in to comment.