renamed to .d.ts

This commit is contained in:
Jeffrey Hsu 2024-12-02 17:24:50 +08:00
parent 7b96e16666
commit 690991726b

5
types/notification.d.ts vendored Normal file
View File

@ -0,0 +1,5 @@
declare interface INotification {
level: 'warning' | 'error' | 'info' | 'success'
title: string
message: string
}