This commit is contained in:
Benjamin Toby
2025-09-03 13:27:04 +01:00
parent 97f480c208
commit c34d256891
5 changed files with 8 additions and 3 deletions
+1 -1
View File
@@ -1020,7 +1020,7 @@ export type ServerQueryObject<
T extends object = { [key: string]: any },
K extends string = string
> = {
value?: string | (string | ServerQueryValuesObject)[];
value?: string | (string | ServerQueryValuesObject | undefined | null)[];
nullValue?: boolean;
notNullValue?: boolean;
operator?: (typeof ServerQueryOperators)[number];