ng-zorro-antd-mobile
Version:
An enterprise-class mobile UI components based on Ant Design and Angular
25 lines (24 loc) • 1.09 kB
TypeScript
import { OnInit, EventEmitter } from '@angular/core';
import { RadioStatus } from './PropsType';
import * as i0 from "@angular/core";
export declare class RadioComponent implements OnInit {
prefixCls: string;
classMap: object;
private _checked;
private _disabled;
name: string;
value: string;
get checked(): boolean;
set checked(value: boolean);
get disabled(): boolean;
set disabled(value: boolean);
onChange: EventEmitter<RadioStatus>;
radioWrapper: boolean;
onClick(event: any): void;
constructor();
updateValue(checkValue: boolean): void;
ngOnInit(): void;
private updateClassMap;
static ɵfac: i0.ɵɵFactoryDeclaration<RadioComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<RadioComponent, "[Radio], [nzm-radio]", never, { "name": { "alias": "name"; "required": false; }; "value": { "alias": "value"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "onChange": "onChange"; }, never, ["*"], false, never>;
}