Preparing search index...
    interface RadioChangeEventTarget {
        autoFocus?: boolean;
        checked: boolean;
        children?: ReactNode;
        className?: string;
        defaultChecked?: boolean;
        disabled?: boolean;
        id?: string;
        name?: string;
        onChange?: (e: RadioMouseEvent) => 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 Summary)

    Index

    Properties

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