This commit is contained in:
Benjamin Toby
2025-06-01 12:14:49 +01:00
parent 9b7c98cff6
commit cd96c11817
6 changed files with 60 additions and 22 deletions
+5
View File
@@ -1365,6 +1365,7 @@ export type DsqlCrudParam<T extends {
sanitize?: (data?: T) => T;
debug?: boolean;
count?: boolean;
countOnly?: boolean;
};
export type ErrorCallback = (title: string, error: Error, data?: any) => void;
export interface MariaDBUser {
@@ -1421,6 +1422,10 @@ export type PagePropsType = {
pageUrl?: string | null;
query?: any;
databases?: DSQL_DATASQUIREL_USER_DATABASES[] | null;
dbCount?: number | null;
tableCount?: number | null;
mediaCount?: number | null;
apiKeysCount?: number | null;
};
export type APIResponseObject<T extends any = any> = {
success: boolean;