UNPKG

@antdp/antdp-ui

Version:

基于antd封装的组件

13 lines (12 loc) 479 B
import React from 'react'; import { DescriptionsProps } from 'antd/es/descriptions'; import { QuickFormProps } from '../QuickForm'; interface FormDetailProps extends QuickFormProps<any> { isView: boolean; bordered: boolean | undefined; layout?: 'horizontal' | 'vertical'; style?: object; otherDescriptions?: DescriptionsProps; } declare const _default: React.ForwardRefExoticComponent<FormDetailProps & React.RefAttributes<unknown>>; export default _default;