Skip to content

Commit

Permalink
typecheck
Browse files Browse the repository at this point in the history
  • Loading branch information
carkom committed Jan 15, 2024
1 parent 3a01141 commit b249828
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ type FilterEditorProps = {
field: string;
op: string;
value: string | number;
options: Array<[number, string]>;
options: { inflow; outflow };
onSave: (any) => void;
onClose: () => void;
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ type FilterExpressionProps = {
customName: string;
op: string;
value: string | number;
options: Array<[number, string]>;
options: { inflow; outflow };
style?: CSSProperties;
onChange: (newFilter) => void;
onDelete: () => void;
Expand Down

0 comments on commit b249828

Please sign in to comment.