@visactor/vue-vtable
Version:
The vue version of VTable
18 lines (17 loc) • 441 B
TypeScript
export interface RadioProps {
children?: string;
textStyle?: any;
circleStyle?: any;
checked?: boolean;
interactive?: boolean;
disabled?: boolean;
disableCursor?: any;
spaceBetweenTextAndIcon?: number;
visible?: boolean;
onChange?: (checked: boolean) => void;
}
declare function Radio(props: RadioProps): any;
declare namespace Radio {
var symbol: string;
}
export default Radio;