import { ComponentMetadata } from '@alilc/lowcode-types'; const CustomerOAuthConfigMeta: ComponentMetadata = { componentName: 'CustomerOAuthConfig', title: 'CustomerOAuthConfig', docUrl: '', screenshot: '', category: '表单', devMode: 'proCode', npm: { package: '@pisell/private-materials', version: '1.0.0', exportName: 'CustomerOAuthConfig', main: 'src/index.ts', destructuring: true, subName: '', }, props: [ { name: 'className', title: { label: '类名', tip: 'className | 自定义类名', }, propType: 'string', }, { name: 'style', title: { label: '样式', tip: 'style | 自定义样式', }, propType: 'object', }, { name: 'onSave', title: { label: '保存回调', tip: 'onSave | 保存回调函数', }, propType: 'func', }, ], configure: { component: { isContainer: false, }, }, }; export default { ...CustomerOAuthConfigMeta, };