Updates
This commit is contained in:
Vendored
+5
-1
@@ -829,10 +829,14 @@ export type ServerQueryParam<T extends {
|
||||
group?: (keyof T)[];
|
||||
[key: string]: any;
|
||||
};
|
||||
export type ServerQueryValuesObject = {
|
||||
value?: string | number;
|
||||
equality?: (typeof ServerQueryEqualities)[number];
|
||||
};
|
||||
export type ServerQueryObject<T extends object = {
|
||||
[key: string]: any;
|
||||
}, K extends string = string> = {
|
||||
value?: string | string[];
|
||||
value?: string | (string | ServerQueryValuesObject)[];
|
||||
nullValue?: boolean;
|
||||
notNullValue?: boolean;
|
||||
operator?: (typeof ServerQueryOperators)[number];
|
||||
|
||||
Reference in New Issue
Block a user