fix layout ui

This commit is contained in:
jxxghp
2024-05-11 12:53:42 +08:00
parent f227ae89ec
commit 2c35d0f897
11 changed files with 183 additions and 66 deletions

View File

@@ -806,3 +806,15 @@ export interface Message {
// JSON
note?: string
}
// 系统通知
export interface SystemNotification {
// 通知类型 user/system/plugin
type: string
// 通知标题
title: string
// 通知内容
text: string
// 通知时间
date: string
}