mirror of
https://gitee.com/dromara/go-view.git
synced 2025-04-06 03:58:04 +08:00
14 lines
315 B
TypeScript
14 lines
315 B
TypeScript
export enum ChatCategoryEnum {
|
|
ML = 'MaterialLine',
|
|
COMMON = 'Common',
|
|
WEATHER = 'Weather',
|
|
DEFAULT = 'Default' // 这个仅用来表示组件分类目录,不要在 index.ts 中导入
|
|
}
|
|
|
|
export enum ChatCategoryEnumName {
|
|
ML = '动画',
|
|
COMMON = '通用',
|
|
WEATHER = '天气',
|
|
DEFAULT = '默认'
|
|
}
|