added LogsDiscordResponse type

This commit is contained in:
2023-02-28 08:56:24 +10:00
parent ad3e6e59f2
commit f7bac335db

View File

@@ -84,3 +84,10 @@ export interface LoginResponse {
user: User;
token: string;
}
export interface LogsDiscordResponse {
log: {
output: string;
error: string;
};
}