This commit is contained in:
jxxghp
2023-07-13 20:42:35 +08:00
parent 660fa639db
commit 0a7ce0fa95
2 changed files with 35 additions and 35 deletions

View File

@@ -480,3 +480,14 @@ export interface ScheduleInfo {
// 下次运行时间
next_run: string;
}
// 消息通知
export interface NotificationSwitch {
// 消息类型
mtype: string;
// 开关
wechat: boolean;
telegram: boolean;
slack: boolean;
}