13 lines
283 B
TypeScript
13 lines
283 B
TypeScript
|
import { RadioProps } from './Radio';
|
||
|
|
||
|
export interface RadioChangeEventTarget extends RadioProps {
|
||
|
checked: boolean;
|
||
|
}
|
||
|
|
||
|
export interface RadioChangeEvent {
|
||
|
target: RadioChangeEventTarget;
|
||
|
stopPropagation: () => void;
|
||
|
preventDefault: () => void;
|
||
|
nativeEvent: MouseEvent;
|
||
|
}
|