7 lines
214 B
TypeScript
7 lines
214 B
TypeScript
|
|
export type NotificationType = 'success' | 'error' | 'warning' | 'info';
|
||
|
|
|
||
|
|
export interface INotification {
|
||
|
|
show(message: string, type?: NotificationType, duration?: number): void;
|
||
|
|
hide(id: string): void;
|
||
|
|
}
|