UNPKG

ng-zorro-antd-mobile

Version:

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

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