checkbox.d.ts 1.4 KB

123456789101112131415161718192021222324
  1. /**
  2. * Use of this source code is governed by an MIT-style license that can be
  3. * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
  4. */
  5. import { ChangeDetectorRef, ElementRef, EventEmitter, NgZone, OnInit } from '@angular/core';
  6. import { NzDestroyService } from 'ng-zorro-antd/core/services';
  7. import * as i0 from "@angular/core";
  8. export declare class NzTreeNodeCheckboxComponent implements OnInit {
  9. private ngZone;
  10. private ref;
  11. private host;
  12. private destroy$;
  13. nzChecked?: boolean;
  14. nzIndeterminate?: boolean;
  15. nzDisabled?: boolean;
  16. readonly nzClick: EventEmitter<MouseEvent>;
  17. constructor(ngZone: NgZone, ref: ChangeDetectorRef, host: ElementRef<HTMLElement>, destroy$: NzDestroyService);
  18. ngOnInit(): void;
  19. static ɵfac: i0.ɵɵFactoryDeclaration<NzTreeNodeCheckboxComponent, never>;
  20. static ɵcmp: i0.ɵɵComponentDeclaration<NzTreeNodeCheckboxComponent, "nz-tree-node-checkbox:not([builtin])", never, { "nzChecked": { "alias": "nzChecked"; "required": false; }; "nzIndeterminate": { "alias": "nzIndeterminate"; "required": false; }; "nzDisabled": { "alias": "nzDisabled"; "required": false; }; }, { "nzClick": "nzClick"; }, never, never, true, never>;
  21. static ngAcceptInputType_nzChecked: unknown;
  22. static ngAcceptInputType_nzIndeterminate: unknown;
  23. static ngAcceptInputType_nzDisabled: unknown;
  24. }