You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
875 B
TypeScript
28 lines
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 {
|
|
}
|