WebIndex/types/notification.d.ts
2025-01-13 21:51:37 +08:00

6 lines
120 B
TypeScript

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