This commit is contained in:
2025-07-06 22:11:59 +09:00
parent 05194ad7b8
commit 22ec582e0a
11 changed files with 200 additions and 9 deletions
+17
View File
@@ -19,11 +19,28 @@ interface timeTypes {
stopTimes: stopsTypes;
}
interface emergencyMailTypes {
function: Boolean;
host: string | undefined;
port: number;
user: string;
password: string;
secure: Boolean;
to: string;
}
interface emergencyTypes {
function: Boolean;
mail: emergencyMailTypes;
}
export interface configTypes {
time: timeTypes,
earthquake: earthquakeTypes;
weather: weatherTypes;
emergency: emergencyTypes;
apiToken: string;
uwuzuServer: string;
}