messages.d.ts 875 B

123456789101112131415161718192021222324252627
  1. import { OnInit, OnDestroy, EventEmitter } from '@angular/core';
  2. import { Message } from '../common/message';
  3. import { MessageService } from '../common/messageservice';
  4. import { Subscription } from 'rxjs';
  5. export declare class Messages implements OnInit, OnDestroy {
  6. messageService: MessageService;
  7. value: Message[];
  8. closable: boolean;
  9. style: any;
  10. styleClass: string;
  11. enableService: boolean;
  12. key: string;
  13. showTransitionOptions: string;
  14. hideTransitionOptions: string;
  15. valueChange: EventEmitter<Message[]>;
  16. messageSubscription: Subscription;
  17. clearSubscription: Subscription;
  18. constructor(messageService: MessageService);
  19. ngOnInit(): void;
  20. hasMessages(): boolean;
  21. getSeverityClass(): string;
  22. clear(event: any): void;
  23. readonly icon: string;
  24. ngOnDestroy(): void;
  25. }
  26. export declare class MessagesModule {
  27. }