upend/ui/src/notifications.ts

13 lines
208 B
TypeScript
Raw Normal View History

import mitt from "mitt";
type NotifyEvents = {
notification: Notification;
};
export interface Notification {
content: string;
level?: "info" | "error";
}
export const notify = mitt<NotifyEvents>();