mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-22 20:37:48 +00:00
14 lines
220 B
TypeScript
14 lines
220 B
TypeScript
export enum InformTypeEnum {
|
|
system = 'system',
|
|
admin = 'admin'
|
|
}
|
|
|
|
export const InformTypeMap = {
|
|
[InformTypeEnum.system]: {
|
|
label: '系统通知'
|
|
},
|
|
[InformTypeEnum.admin]: {
|
|
label: '管理员'
|
|
}
|
|
};
|