@yuntijs/ui
Version:
☁️ Yunti UI - an open-source UI component library for building Cloud Native web apps
9 lines (8 loc) • 367 B
TypeScript
import { Form as AntForm } from 'antd';
import { FormCollapseList } from './collapse-list';
export * from './collapse-list';
export type { FormInstance, FormItemProps, FormListFieldData, FormListOperation, FormProps, FormRule, } from 'antd';
export type FormType = typeof AntForm & {
CollapseList: typeof FormCollapseList;
};
export declare const Form: FormType;