comment-cells.d.ts 2.1 KB

12345678910111213141516171819202122232425262728293031323334
  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 { CdkPortalOutlet, TemplatePortal } from '@angular/cdk/portal';
  6. import { AfterViewInit, ComponentFactoryResolver, OnDestroy, OnInit, TemplateRef, ViewContainerRef } from '@angular/core';
  7. import * as i0 from "@angular/core";
  8. export declare class NzCommentAvatarDirective {
  9. static ɵfac: i0.ɵɵFactoryDeclaration<NzCommentAvatarDirective, never>;
  10. static ɵdir: i0.ɵɵDirectiveDeclaration<NzCommentAvatarDirective, "nz-avatar[nz-comment-avatar]", ["nzCommentAvatar"], {}, {}, never, never, true, never>;
  11. }
  12. export declare class NzCommentContentDirective {
  13. static ɵfac: i0.ɵɵFactoryDeclaration<NzCommentContentDirective, never>;
  14. static ɵdir: i0.ɵɵDirectiveDeclaration<NzCommentContentDirective, "nz-comment-content, [nz-comment-content]", ["nzCommentContent"], {}, {}, never, never, true, never>;
  15. }
  16. export declare class NzCommentActionHostDirective extends CdkPortalOutlet implements OnInit, OnDestroy, AfterViewInit {
  17. nzCommentActionHost?: TemplatePortal | null;
  18. constructor(componentFactoryResolver: ComponentFactoryResolver, viewContainerRef: ViewContainerRef);
  19. ngOnInit(): void;
  20. ngOnDestroy(): void;
  21. ngAfterViewInit(): void;
  22. static ɵfac: i0.ɵɵFactoryDeclaration<NzCommentActionHostDirective, never>;
  23. static ɵdir: i0.ɵɵDirectiveDeclaration<NzCommentActionHostDirective, "[nzCommentActionHost]", ["nzCommentActionHost"], { "nzCommentActionHost": { "alias": "nzCommentActionHost"; "required": false; }; }, {}, never, never, true, never>;
  24. }
  25. export declare class NzCommentActionComponent implements OnInit {
  26. private viewContainerRef;
  27. implicitContent: TemplateRef<void>;
  28. private contentPortal;
  29. get content(): TemplatePortal | null;
  30. constructor(viewContainerRef: ViewContainerRef);
  31. ngOnInit(): void;
  32. static ɵfac: i0.ɵɵFactoryDeclaration<NzCommentActionComponent, never>;
  33. static ɵcmp: i0.ɵɵComponentDeclaration<NzCommentActionComponent, "nz-comment-action", ["nzCommentAction"], {}, {}, never, ["*"], true, never>;
  34. }