You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
453 B
18 lines
453 B
import { FormItemProps } from 'antd/lib/form';
|
|
|
|
export interface GroupProps {
|
|
title?: React.ReactNode;
|
|
style?: React.CSSProperties;
|
|
titleStyle?: React.CSSProperties;
|
|
titleRender?: (title: React.ReactNode, props: GroupProps) => React.ReactNode;
|
|
}
|
|
|
|
export interface FieldProps {
|
|
style?: React.CSSProperties;
|
|
}
|
|
|
|
export interface ProFormItemProps<T = {}> extends FormItemProps {
|
|
fieldProps?: FieldProps & T;
|
|
placeholder?: string | string[];
|
|
}
|