UNPKG

nd-gui

Version:

UI components for NetDocuments

19 lines (18 loc) 487 B
import { OnInit, EventEmitter } from '@angular/core'; export declare class CheckboxComponent implements OnInit { name: string; value: any; label: string; disabled: boolean; binary: boolean; tabindex: number; inputId: string; style: object; styleClass: string; labelStyleClass: string; checked: boolean; checkedChange: EventEmitter<boolean>; constructor(); ngOnInit(): void; onChange($event: boolean): void; }