15 lines
488 B
TypeScript
15 lines
488 B
TypeScript
import { ConfigType, PackagesCategoryEnum, ChartFrameEnum } from '@/packages/index.d';
|
|
import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d';
|
|
|
|
export const TitlesBg01Config: ConfigType = {
|
|
key: 'TitlesBg01',
|
|
chartKey: 'VTitlesBg01',
|
|
conKey: 'VCTitlesBg01',
|
|
title: '背景图',
|
|
category: ChatCategoryEnum.TITLE,
|
|
categoryName: ChatCategoryEnumName.TITLE,
|
|
package: PackagesCategoryEnum.UNITS,
|
|
chartFrame: ChartFrameEnum.STATIC,
|
|
image: 'titlesbg01.png',
|
|
};
|