mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 05:12:39 +00:00
10 lines
145 B
TypeScript
10 lines
145 B
TypeScript
export enum InformTypeEnum {
|
|
system = 'system'
|
|
}
|
|
|
|
export const InformTypeMap = {
|
|
[InformTypeEnum.system]: {
|
|
label: '系统通知'
|
|
}
|
|
};
|