This commit is contained in:
Benjamin Toby
2024-12-12 14:43:25 +01:00
parent 2a4e111160
commit 6be3ede31a
7 changed files with 21 additions and 16 deletions
+1 -4
View File
@@ -159,10 +159,7 @@ export interface GetReqQueryObject {
queryValues?: string;
tableName?: string;
}
export type SerializeQueryFnType = (param0: SerializeQueryParams) => string;
export interface SerializeQueryParams {
query: any;
}
export type SerializeQueryFnType = (query: any) => string;
export type DATASQUIREL_LoggedInUser = {
id: number;
uuid?: string;
+1 -7
View File
@@ -188,13 +188,7 @@ export interface GetReqQueryObject {
tableName?: string;
}
export type SerializeQueryFnType = (param0: SerializeQueryParams) => string;
export interface SerializeQueryParams {
query: any;
}
// @ts-check
export type SerializeQueryFnType = (query: any) => string;
export type DATASQUIREL_LoggedInUser = {
id: number;