element/types/radio-group.d.ts

19 lines
458 B
TypeScript
Raw Normal View History

import { ElementUIComponent } from './component'
export type RadioGroupSize = 'large' | 'small'
/** Radio Group Component */
export declare class ElRadioGroup extends ElementUIComponent {
/** The size of radio buttons */
size: RadioGroupSize
/** Border and background color when button is active */
fill: string
2017-10-18 18:31:03 +08:00
/** Whether the nesting radios are disabled */
disabled: boolean
/** Font color when button is active */
textColor: string
}