Updates
This commit is contained in:
@@ -1009,11 +1009,16 @@ export type ServerQueryParam<
|
||||
[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