import { PropertyConfig, PropertyType, ActionType, } from '@byted-apaas/property-types'; /** * 更多详细用法查看:https://ae.feishu.cn/hc/zh-CN/articles/474176680031 */ const propertyConfig: PropertyConfig = { propertySettings: { properties: [ { key: 'key1', label: '字符串', type: PropertyType.String, }, ], propertyGroups: [], }, eventSettings: [ { key: 'onClick', label: '点击时', }, ], }; export default propertyConfig;