UNPKG

@douyinfe/semi-ui

Version:

A modern, comprehensive, flexible design system and UI library. Connect DesignOps & DevOps. Quickly build beautiful React apps. Maintained by Douyin-fe team.

11 lines (10 loc) 347 B
import React from 'react'; interface ConfigureItemOpts { valueKey?: string; onKeyChangeFnName?: string; valuePath?: string; className?: string; defaultProps?: Record<string, any>; } declare function getConfigureItem(Component: any, opts?: ConfigureItemOpts): (props: any) => React.JSX.Element; export default getConfigureItem;