UNPKG

ng-zorro-antd-mobile

Version:

An enterprise-class mobile UI components based on Ant Design and Angular

20 lines (19 loc) 539 B
import { OnInit, EventEmitter } from '@angular/core'; import { RadioStatus } from './PropsType'; export declare class RadioComponent implements OnInit { prefixCls: string; classMap: object; private _checked; private _disabled; name: string; value: string; checked: boolean; disabled: boolean; onChange: EventEmitter<RadioStatus>; radioWrapper: boolean; onClick(event: any): void; constructor(); updateValue(checkValue: boolean): void; ngOnInit(): void; private updateClassMap; }