Notification Update (Selector)

This commit is contained in:
Moritz Utcke
2024-12-23 16:36:58 +07:00
parent bbe54fca0f
commit 2710958b59
6 changed files with 177 additions and 110 deletions

View File

@@ -20,6 +20,7 @@ export interface Notification {
type: "error" | "success" | "info" | "warning";
onUserDismiss: () => any;
uid?: string;
selector?: string;
}
export function updateNotification(uid: string, updater: Partial<Notification>) {