ngx-json-ui
Version:
This project was generated using [Angular CLI](https://github.com/angular/angular-cli) version 19.2.0.
14 lines (13 loc) • 305 B
TypeScript
/**
* Notification types for toast or alert displays
*/
export type NotificationType = 'success' | 'error' | 'info' | 'warning';
/**
* Notification payload
*/
export interface Notification {
type: NotificationType;
message: string;
/** duration in milliseconds */
duration?: number;
}