Skip to content

Commit

Permalink
fix: type of SearchConditionMultiple (#112)
Browse files Browse the repository at this point in the history
* fix: type of SearchConditionMultiple

* chore: add changeset
  • Loading branch information
thundermiracle authored Aug 14, 2023
1 parent 2080b04 commit 85229be
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/sour-horses-run.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"filter-data": patch
---

fix: type of SearchConditionMultiple
2 changes: 1 addition & 1 deletion src/lib/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export interface SearchCondition {

export interface SearchConditionMultiple {
key: string | string[] | string[][];
value?: string | number;
value?: string | number | boolean;
type: SearchType;
}

Expand Down

0 comments on commit 85229be

Please sign in to comment.