src/app/models/ToastMsg.ts
Properties |
| color |
color:
|
Type : string
|
| Optional |
| msg |
msg:
|
Type : string
|
| timeOut |
timeOut:
|
Type : number
|
| Optional |
| type |
type:
|
Type : "warning" | "alert" | "notification"
|
| Optional |
export interface ToastMsg{
msg:string,
type?:'warning'|'alert'|'notification',
timeOut?:number,
color?:string
}