WebIndex/types/notification.d.ts

6 lines
120 B
TypeScript
Raw Normal View History

2024-12-02 17:24:50 +08:00
declare interface INotification {
2025-01-13 21:51:37 +08:00
level: 'warning' | 'error' | 'info' | 'success'
title: string
message: string
}