15 lines
448 B
TypeScript
Raw Normal View History

2022-01-15 22:35:32 +08:00
import image from '@/assets/images/chart/charts/radar.png'
2022-01-25 11:09:32 +08:00
import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d'
import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d'
2022-01-15 22:35:32 +08:00
export const RadarConfig: ConfigType = {
key: 'Radar',
chartKey: 'VRadar',
2022-03-07 12:33:05 +08:00
conKey: 'VCRadar',
2022-01-15 22:35:32 +08:00
title: '雷达',
category: ChatCategoryEnum.MORE,
categoryName: ChatCategoryEnumName.MORE,
2022-01-25 11:09:32 +08:00
package: PackagesCategoryEnum.CHARTS,
image
2022-01-15 22:35:32 +08:00
}