2019-01-01 04:13:51 +00:00
|
|
|
// Project: https://github.com/vueComponent/ant-design-vue
|
|
|
|
// Definitions by: akki-jat <https://github.com/akki-jat>
|
|
|
|
// Definitions: https://github.com/vueComponent/ant-design-vue/types
|
|
|
|
|
2020-08-18 02:12:57 +00:00
|
|
|
import { RadioProps, Radio } from './radio';
|
2019-01-01 04:13:51 +00:00
|
|
|
|
2020-08-18 02:12:57 +00:00
|
|
|
declare class RadioButtonProps extends RadioProps {
|
2019-01-01 04:13:51 +00:00
|
|
|
/**
|
2020-08-30 14:59:47 +00:00
|
|
|
* Type of radio button
|
|
|
|
* @type string
|
|
|
|
*/
|
2020-08-18 02:12:57 +00:00
|
|
|
type?: 'primary' | 'danger' | 'dashed' | 'ghost' | 'default';
|
|
|
|
}
|
|
|
|
export declare class RadioButton extends Radio {
|
2020-08-30 14:59:47 +00:00
|
|
|
$props: RadioButtonProps;
|
2019-01-01 04:13:51 +00:00
|
|
|
}
|