float-button.component.d.ts 1.6 KB

1234567891011121314151617181920212223242526
  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 { Direction, Directionality } from '@angular/cdk/bidi';
  6. import { ChangeDetectorRef, EventEmitter, OnDestroy, OnInit, TemplateRef } from '@angular/core';
  7. import { NzDestroyService } from 'ng-zorro-antd/core/services';
  8. import * as i0 from "@angular/core";
  9. export declare class NzFloatButtonComponent implements OnInit, OnDestroy {
  10. private destroy$;
  11. private directionality;
  12. private cdr;
  13. nzHref: string | null;
  14. nzTarget: string | null;
  15. nzType: 'default' | 'primary';
  16. nzShape: 'circle' | 'square';
  17. nzIcon: TemplateRef<void> | null;
  18. nzDescription: TemplateRef<void> | string | null;
  19. readonly nzOnClick: EventEmitter<boolean>;
  20. dir: Direction;
  21. constructor(destroy$: NzDestroyService, directionality: Directionality, cdr: ChangeDetectorRef);
  22. ngOnInit(): void;
  23. ngOnDestroy(): void;
  24. static ɵfac: i0.ɵɵFactoryDeclaration<NzFloatButtonComponent, never>;
  25. static ɵcmp: i0.ɵɵComponentDeclaration<NzFloatButtonComponent, "nz-float-button", ["nzFloatButton"], { "nzHref": { "alias": "nzHref"; "required": false; }; "nzTarget": { "alias": "nzTarget"; "required": false; }; "nzType": { "alias": "nzType"; "required": false; }; "nzShape": { "alias": "nzShape"; "required": false; }; "nzIcon": { "alias": "nzIcon"; "required": false; }; "nzDescription": { "alias": "nzDescription"; "required": false; }; }, { "nzOnClick": "nzOnClick"; }, never, never, true, never>;
  26. }