notification.component.d.ts 1009 B

12345678910111213141516171819
  1. import { EventEmitter, OnDestroy } from '@angular/core';
  2. import { NzMNComponent } from 'ng-zorro-antd/message';
  3. import { NzNotificationData } from './typings';
  4. import * as i0 from "@angular/core";
  5. export declare class NzNotificationComponent extends NzMNComponent implements OnDestroy {
  6. instance: Required<NzNotificationData>;
  7. index: number;
  8. placement?: string;
  9. readonly destroyed: EventEmitter<{
  10. id: string;
  11. userAction: boolean;
  12. }>;
  13. ngOnDestroy(): void;
  14. onClick(event: MouseEvent): void;
  15. close(): void;
  16. get state(): string | undefined;
  17. static ɵfac: i0.ɵɵFactoryDeclaration<NzNotificationComponent, never>;
  18. static ɵcmp: i0.ɵɵComponentDeclaration<NzNotificationComponent, "nz-notification", ["nzNotification"], { "instance": { "alias": "instance"; "required": false; }; "index": { "alias": "index"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; }, { "destroyed": "destroyed"; }, never, never, true, never>;
  19. }