src/banner/banner-content.interface.ts
Deprecated in favour of NotificationContent (to be removed in v3.0).
Properties |
| closeLabel |
closeLabel:
|
Type : string
|
|
Defined in src/banner/banner-content.interface.ts:12
|
| duration |
duration:
|
Type : number
|
|
Defined in src/banner/banner-content.interface.ts:10
|
| smart |
smart:
|
Type : boolean
|
|
Defined in src/banner/banner-content.interface.ts:11
|
| target |
target:
|
Type : string
|
|
Defined in src/banner/banner-content.interface.ts:9
|
| title |
title:
|
Type : string
|
|
Defined in src/banner/banner-content.interface.ts:8
|
| type |
type:
|
Type : string
|
|
Defined in src/banner/banner-content.interface.ts:7
|
export interface BannerContent {
type: string;
title: string;
target?: string;
duration?: number;
smart?: boolean;
closeLabel?: string;
}
export interface NotificationContent extends BannerContent {
message: string;
}
export interface ToastContent extends NotificationContent {
subtitle: string;
caption: string;
}