first commit
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
export type NotificationType = 'success' | 'info' | 'warning' | 'error';
|
||||
|
||||
export interface Notification {
|
||||
id: string;
|
||||
title?: string;
|
||||
content: string;
|
||||
type?: NotificationType;
|
||||
}
|
||||
Reference in New Issue
Block a user