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