interface RadioMouseEvent<T> {
    nativeEvent: MouseEvent;
    preventDefault: (() => void);
    stopPropagation: (() => void);
    target: T;
}

Type Parameters

  • T

Properties

nativeEvent: MouseEvent
preventDefault: (() => void)
stopPropagation: (() => void)
target: T