WebIndex/types/notification.d.ts
2024-12-02 17:24:50 +08:00

5 lines
125 B
TypeScript

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