v7.3@uwuzu1.5.4をリリース
This commit is contained in:
Vendored
+18
-6
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user