WebIndex/types/notification.ts
2025-01-13 23:12:06 +08:00

8 lines
141 B
TypeScript

declare global {
interface INotification {
level: 'warning' | 'error' | 'info' | 'success'
title: string
message: string
}
}