This commit is contained in:
2026-03-08 14:29:33 +01:00
parent 835458cc14
commit 42ee8eaaa1
6 changed files with 28 additions and 26 deletions
+4 -4
View File
@@ -475,10 +475,6 @@ export type ServerQueryParamsCount = {
}[];
alias: string;
};
export type ServerQueryParamsCountSrcTrgMap = {
table: string;
field: string;
};
export type TableSelectFieldsObject<T extends {
[k: string]: any;
} = {
@@ -524,6 +520,10 @@ export type ServerQueryQueryObject<T extends object = {
}, K extends string = string> = {
[key in keyof T]: ServerQueryObject<T, K>;
};
export type ServerQueryParamsCountSrcTrgMap = {
table: string;
field: string;
};
export type FetchDataParams = {
path: string;
method?: (typeof DataCrudRequestMethods)[number];