rsuite
Version:
A suite of react components
12 lines (11 loc) • 543 B
TypeScript
import { FormControlPickerProps, RsRefForwardingComponent } from '../@types/common';
import { ValueType } from '../CheckTreePicker';
import { TreeBaseProps } from '../Tree/Tree';
export interface CheckTreeProps extends TreeBaseProps<ValueType>, FormControlPickerProps<ValueType> {
/** Tree node cascade */
cascade?: boolean;
/** Set the option value for the check box not to be rendered */
uncheckableItemValues?: ValueType;
}
declare const CheckTree: RsRefForwardingComponent<'div', CheckTreeProps>;
export default CheckTree;