UNPKG

ng-zorro-antd-mobile

Version:

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

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