UNPKG

primeng

Version:

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![Join the chat at https://gitter.im/primefaces/primeng](https://badges.gitter.im/primefaces/primeng.svg)](https://gitter.im/primefaces/primeng?ut

28 lines (27 loc) 875 B
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 { }