diff --git a/.changeset/sour-horses-run.md b/.changeset/sour-horses-run.md new file mode 100644 index 0000000..f7068e1 --- /dev/null +++ b/.changeset/sour-horses-run.md @@ -0,0 +1,5 @@ +--- +"filter-data": patch +--- + +fix: type of SearchConditionMultiple diff --git a/src/lib/types.ts b/src/lib/types.ts index 8b6c853..3ca5236 100644 --- a/src/lib/types.ts +++ b/src/lib/types.ts @@ -15,7 +15,7 @@ export interface SearchCondition { export interface SearchConditionMultiple { key: string | string[] | string[][]; - value?: string | number; + value?: string | number | boolean; type: SearchType; }