4 lines
99 B
TypeScript
4 lines
99 B
TypeScript
|
|
interface NotificationElem {
|
||
|
|
detail:string; // 通知详情json
|
||
|
|
}
|
||
|
|
export default NotificationElem;
|