package.ts
914 Bytes
import { ControlList } from './components/Control';
import { FlowmeterList } from './components/Flowmeter';
import { InstrumentList } from './components/Instrument';
import { MapList } from './components/Map';
import { OtherList } from './components/Other';
// import { PictureList } from './components/Picture';
import { TextList } from './components/Text';
// import { STATISTICSList } from './components/Statistics';
import { PackagesCategoryEnum, PackagesType } from './index.type';
export const packageList: PackagesType = {
[PackagesCategoryEnum.TEXT]: TextList,
[PackagesCategoryEnum.INSTRUMENT]: InstrumentList,
// [PackagesCategoryEnum.PICTURE]: PictureList,
[PackagesCategoryEnum.CONTROL]: ControlList,
[PackagesCategoryEnum.MAP]: MapList,
[PackagesCategoryEnum.FLOWMETER]: FlowmeterList,
// [PackagesCategoryEnum.STATISTICS]: STATISTICSList,
[PackagesCategoryEnum.OTHER]: OtherList,
};