@wufengteam/inputs
Version:
平台提供的右侧属性编辑器,需要在主工程中注册
16 lines (15 loc) • 343 B
TypeScript
import type { FC } from 'react';
import './index.less';
interface IProps {
name: string;
label: string;
placeholder?: string;
tabsItems?: any[];
onChange?: (val: any[]) => void;
selectedComp?: any;
DSLCore?: any;
compCreators?: any;
value?: any;
}
declare const TabsSet: FC<IProps>;
export default TabsSet;