carbon-components-angular
Version:
Next generation components
21 lines (20 loc) • 451 B
TypeScript
/**
* Deprecated in favour of `NotificationContent` (to be removed in v3.0).
*
* @deprecated
*/
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;
}