message.component.d.ts 900 B

123456789101112131415161718
  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, OnDestroy, OnInit } from '@angular/core';
  6. import { NzMNComponent } from './base';
  7. import { NzMessageData } from './typings';
  8. import * as i0 from "@angular/core";
  9. export declare class NzMessageComponent extends NzMNComponent implements OnInit, OnDestroy {
  10. instance: Required<NzMessageData>;
  11. readonly destroyed: EventEmitter<{
  12. id: string;
  13. userAction: boolean;
  14. }>;
  15. index?: number;
  16. static ɵfac: i0.ɵɵFactoryDeclaration<NzMessageComponent, never>;
  17. static ɵcmp: i0.ɵɵComponentDeclaration<NzMessageComponent, "nz-message", ["nzMessage"], { "instance": { "alias": "instance"; "required": false; }; }, { "destroyed": "destroyed"; }, never, never, true, never>;
  18. }