option-group.component.d.ts 816 B

123456789101112131415
  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 { OnChanges, TemplateRef } from '@angular/core';
  6. import { Subject } from 'rxjs';
  7. import { NzSafeAny } from 'ng-zorro-antd/core/types';
  8. import * as i0 from "@angular/core";
  9. export declare class NzOptionGroupComponent implements OnChanges {
  10. nzLabel: string | number | TemplateRef<NzSafeAny> | null;
  11. changes: Subject<void>;
  12. ngOnChanges(): void;
  13. static ɵfac: i0.ɵɵFactoryDeclaration<NzOptionGroupComponent, never>;
  14. static ɵcmp: i0.ɵɵComponentDeclaration<NzOptionGroupComponent, "nz-option-group", ["nzOptionGroup"], { "nzLabel": { "alias": "nzLabel"; "required": false; }; }, {}, never, ["*"], true, never>;
  15. }