interface RadioCheckboxChangeEventTarget {
    autoFocus?: boolean;
    checked: boolean;
    children?: ReactNode;
    className?: string;
    defaultChecked?: boolean;
    disabled?: boolean;
    id?: string;
    indeterminate?: boolean;
    name?: string;
    onChange?: ((e: RadioMouseEvent<RadioCheckboxChangeEventTarget>) => void);
    onClick?: MouseEventHandler<HTMLElement>;
    onKeyDown?: KeyboardEventHandler<HTMLElement>;
    onKeyPress?: KeyboardEventHandler<HTMLElement>;
    onMouseEnter?: MouseEventHandler<HTMLElement>;
    onMouseLeave?: MouseEventHandler<HTMLElement>;
    prefixCls?: string;
    style?: CSSProperties;
    tabIndex?: number;
    type?: string;
    value?: any;
}

Hierarchy (view full)

Properties

autoFocus?: boolean
checked: boolean
children?: ReactNode
className?: string
defaultChecked?: boolean
disabled?: boolean
id?: string
indeterminate?: boolean
name?: string
onClick?: MouseEventHandler<HTMLElement>
onKeyDown?: KeyboardEventHandler<HTMLElement>
onKeyPress?: KeyboardEventHandler<HTMLElement>
onMouseEnter?: MouseEventHandler<HTMLElement>
onMouseLeave?: MouseEventHandler<HTMLElement>
prefixCls?: string
tabIndex?: number
type?: string
value?: any