checkbox-wrapper.component.d.ts 930 B

12345678910111213141516171819
  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 { EventEmitter } from '@angular/core';
  6. import { NzCheckboxComponent } from './checkbox.component';
  7. import * as i0 from "@angular/core";
  8. /**
  9. * @deprecated Deprecated in v19.0.0. It is recommended to use `<nz-checkbox-group>`.
  10. */
  11. export declare class NzCheckboxWrapperComponent {
  12. readonly nzOnChange: EventEmitter<any[]>;
  13. private checkboxList;
  14. addCheckbox(value: NzCheckboxComponent): void;
  15. removeCheckbox(value: NzCheckboxComponent): void;
  16. onChange(): void;
  17. static ɵfac: i0.ɵɵFactoryDeclaration<NzCheckboxWrapperComponent, never>;
  18. static ɵcmp: i0.ɵɵComponentDeclaration<NzCheckboxWrapperComponent, "nz-checkbox-wrapper", ["nzCheckboxWrapper"], {}, { "nzOnChange": "nzOnChange"; }, never, ["*"], true, never>;
  19. }