primeng
Version:
[](https://opensource.org/licenses/MIT) [](https://gitter.im/primefaces/primeng?ut
28 lines (27 loc) • 875 B
TypeScript
import { OnInit, OnDestroy, EventEmitter } from '@angular/core';
import { Message } from '../common/message';
import { MessageService } from '../common/messageservice';
import { Subscription } from 'rxjs';
export declare class Messages implements OnInit, OnDestroy {
messageService: MessageService;
value: Message[];
closable: boolean;
style: any;
styleClass: string;
enableService: boolean;
key: string;
showTransitionOptions: string;
hideTransitionOptions: string;
valueChange: EventEmitter<Message[]>;
messageSubscription: Subscription;
clearSubscription: Subscription;
constructor(messageService: MessageService);
ngOnInit(): void;
hasMessages(): boolean;
getSeverityClass(): string;
clear(event: any): void;
readonly icon: string;
ngOnDestroy(): void;
}
export declare class MessagesModule {
}