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.
14 lines
610 B
14 lines
610 B
import React from 'react';
|
|
import { CheckboxGroupProps, CheckboxProps } from 'antd/lib/checkbox';
|
|
import { ProFormItemProps } from '../../interface';
|
|
import './index.less';
|
|
export declare type ProFormCheckboxGroupProps = ProFormItemProps<CheckboxGroupProps> & {
|
|
layout?: 'horizontal' | 'vertical';
|
|
options: CheckboxGroupProps['options'];
|
|
};
|
|
export declare type ProFormCheckboxProps = ProFormItemProps<CheckboxProps>;
|
|
declare const WrappedProFormCheckbox: React.ComponentType<ProFormCheckboxProps> & {
|
|
Group: React.ComponentType<ProFormCheckboxGroupProps>;
|
|
};
|
|
export default WrappedProFormCheckbox;
|