UNPKG

create-ias-lowcode

Version:

11 lines (10 loc) 286 B
// 定义组件属性类型 export type ButtonProps = { text: string; size?: 'small' | 'middle' | 'large'; } // 定义设置面板属性类型 export type ButtonSettingsProps = { setProp: (callback: (props: any) => void) => void; [key: string]: any; }