6 lines
120 B
TypeScript
6 lines
120 B
TypeScript
declare interface INotification {
|
|
level: 'warning' | 'error' | 'info' | 'success'
|
|
title: string
|
|
message: string
|
|
}
|