interface RadioChangeEvent {
    nativeEvent: MouseEvent;
    preventDefault: (() => void);
    stopPropagation: (() => void);
    target: RadioChangeEventTarget;
}

Properties

nativeEvent: MouseEvent
preventDefault: (() => void)

Type declaration

    • (): void
    • Returns void

stopPropagation: (() => void)

Type declaration

    • (): void
    • Returns void

target: RadioChangeEventTarget

Generated using TypeDoc