This commit is contained in:
Benjamin Toby
2025-02-12 17:56:44 +01:00
parent a5c3d59d24
commit 1b48c07ee8
431 changed files with 1665 additions and 827 deletions
-6
View File
@@ -1,6 +0,0 @@
export type DSQL_SERVERS = {
server_id?: number;
ip?: string;
ssh_user?: string;
ssh_port?: number;
};
+8
View File
@@ -0,0 +1,8 @@
export type APIResponseObject<
T extends { [k: string]: any } = { [k: string]: any }
> = {
success: boolean;
payload?: T;
msg?: string;
err?: string;
};