src/banner/banner-content.interface.ts
Properties |
| caption |
caption:
|
Type : string
|
|
Defined in src/banner/banner-content.interface.ts:21
|
| subtitle |
subtitle:
|
Type : string
|
|
Defined in src/banner/banner-content.interface.ts:20
|
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;
}