WebIndex/types/notification.ts

8 lines
141 B
TypeScript
Raw Normal View History

2025-01-13 23:12:06 +08:00
declare global {
interface INotification {
level: 'warning' | 'error' | 'info' | 'success'
title: string
message: string
}
}