UNPKG

ng-zorro-antd-mobile

Version:

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

19 lines (18 loc) 445 B
import { EventEmitter } from '@angular/core'; export interface OnChangeEvent { name: string; value: string; checked: boolean; } export declare class CheckboxItem { prefixCls: string; name: string; value: string; checked: boolean; disabled: boolean; onChange: EventEmitter<OnChangeEvent>; onClick: EventEmitter<{}>; constructor(); onCheckboxClick(event: any): void; change(event: any): void; }