File

src/lib/toast/simple-notifications/interfaces/notification.type.ts

Properties

animate
animate: string
Type : string
click
click: EventEmitter<{}>
Type : EventEmitter<{}>
clickToClose
clickToClose: boolean
Type : boolean
content
content: string
Type : string
createdOn
createdOn: Date
Type : Date
destroyedOn
destroyedOn: Date
Type : Date
html
html: any
Type : any
icon
icon: string
Type : string
id
id: string
Type : string
maxLength
maxLength: number
Type : number
override
override: any
Type : any
pauseOnHover
pauseOnHover: boolean
Type : boolean
state
state: string
Type : string
theClass
theClass: string
Type : string
timeOut
timeOut: number
Type : number
title
title: string
Type : string
type
type: string
Type : string
import { EventEmitter } from '@angular/core';

export interface Notification {
    id?: string;
    type: string;
    icon: string;
    title?: string;
    content?: string;
    override?: any;
    html?: any;
    state?: string;
    createdOn?: Date;
    destroyedOn?: Date;
    animate?: string;
    timeOut?: number;
    maxLength?: number;
    pauseOnHover?: boolean;
    clickToClose?: boolean;
    theClass?: string;
    click?: EventEmitter<{}>;
}

results matching ""

    No results matching ""