v7.3@uwuzu1.5.4をリリース

This commit is contained in:
2025-08-04 20:08:23 +09:00
parent 718e97ed45
commit 6ec9831ed4
15 changed files with 353 additions and 42 deletions
+18 -6
View File
@@ -19,19 +19,29 @@ interface timeTypes {
}
interface emergencyMailTypes {
function: Boolean;
host: string | undefined;
function: boolean;
host: string;
port: number;
user: string;
password: string;
secure: Boolean;
to: string;
secure: boolean;
to: string | string[];
}
interface emergencyTypes {
function: Boolean;
function: boolean;
mail: emergencyMailTypes;
report: Boolean;
report: boolean;
}
interface legalTypes {
terms: string;
privacy: string;
}
interface adminTypes {
name: string;
showMail: boolean;
}
interface uwuzuTypes {
@@ -46,5 +56,7 @@ export interface configTypes {
weather: weatherTypes;
emergency: emergencyTypes;
legal: legalTypes;
admin: adminTypes;
uwuzu: uwuzuTypes;
}