projects/prestations-ng/src/foehn-growl/growl-message.ts
Properties |
content |
Type : string
|
isCloseable |
Default value : true
|
isVisible |
Default value : true
|
timeToDisplayInSeconds |
Type : number
|
type |
Type : string
|
Default value : GrowlType.DANGER
|
import { GrowlType } from './growl-types';
export class GrowlMessage {
type: string = GrowlType.DANGER;
content: string;
isCloseable = true;
isVisible = true;
timeToDisplayInSeconds: number;
}