comment.component.d.ts 1.2 KB

12345678910111213141516171819202122
  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, OnDestroy, OnInit, QueryList, TemplateRef } from '@angular/core';
  7. import { NzCommentActionComponent as CommentAction } from './comment-cells';
  8. import * as i0 from "@angular/core";
  9. export declare class NzCommentComponent implements OnDestroy, OnInit {
  10. private cdr;
  11. private directionality;
  12. nzAuthor?: string | TemplateRef<void>;
  13. nzDatetime?: string | TemplateRef<void>;
  14. dir: Direction;
  15. private destroy$;
  16. actions: QueryList<CommentAction>;
  17. constructor(cdr: ChangeDetectorRef, directionality: Directionality);
  18. ngOnInit(): void;
  19. ngOnDestroy(): void;
  20. static ɵfac: i0.ɵɵFactoryDeclaration<NzCommentComponent, never>;
  21. static ɵcmp: i0.ɵɵComponentDeclaration<NzCommentComponent, "nz-comment", ["nzComment"], { "nzAuthor": { "alias": "nzAuthor"; "required": false; }; "nzDatetime": { "alias": "nzDatetime"; "required": false; }; }, {}, ["actions"], ["nz-avatar[nz-comment-avatar]", "nz-comment-content", "*"], true, never>;
  22. }