16 lines
327 B
TypeScript
16 lines
327 B
TypeScript
/* 消息类型枚举 */
|
|
export const enum MessageTypeEnum {
|
|
/* 消息 */
|
|
MESSAGE = "MESSAGE",
|
|
/* 通知 */
|
|
NOTICE = "NOTICE",
|
|
/* 待办 */
|
|
TODO = "TODO",
|
|
}
|
|
|
|
export const MessageTypeLabels = {
|
|
[MessageTypeEnum.MESSAGE]: "消息",
|
|
// [MessageTypeEnum.NOTICE]: "通知",
|
|
// [MessageTypeEnum.TODO]: "待办",
|
|
};
|