mirror of
https://gitee.com/dromara/go-view.git
synced 2025-05-12 14:11:35 +08:00
15 lines
245 B
TypeScript
15 lines
245 B
TypeScript
export enum ChatCategoryEnum {
|
|
BAR = 'bar',
|
|
PIE = 'pie',
|
|
LINE = 'line',
|
|
MAP = 'map',
|
|
MORE = 'more'
|
|
}
|
|
|
|
export enum ChatCategoryEnumName {
|
|
BAR = '柱状图',
|
|
PIE = '饼图',
|
|
LINE = '折线图',
|
|
MAP = '地图',
|
|
MORE = '更多'
|
|
} |