import { ShapeType } from "@/core/components"; import Line from './line/index.vue' import LineIcon from './line-icon/index.vue' import Icon from './icon/index.vue' import Text from './text/index.vue' export const components: { [key in ShapeType]?: (data: {data: any}) => void } = {} components.line = Line as any components.lineIcon = LineIcon as any components.icon = Icon as any components.text = Text as any