import Color from "./color.vue"; export const colorType = "color"; export const propertyComponents = { [colorType]: Color, }; export type PropertyType = keyof typeof propertyComponents; export type PropertyComponents = (typeof propertyComponents)[T]; export type PropertyValue = InstanceType>['$props']['value'] export type PropertyDescribes = Record export type PropertysData = { [K in keyof T]: PropertyValue } export { default as Propertys } from './propertys.vue'