Fix more typings

This commit is contained in:
Adria Navarro 2024-07-09 15:09:54 +02:00
parent 288d48c60d
commit a7b6004c1c
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ type BasicFilter<T = any> = Record<string, T> & {
[InternalSearchFilterOperator.COMPLEX_ID_OPERATOR]?: never
}
type ArrayFilter = Record<string, string[]> & {
type ArrayFilter = Record<string, any[]> & {
[InternalSearchFilterOperator.COMPLEX_ID_OPERATOR]?: {
id: string[]
values: string[]