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