8 lines
141 B
TypeScript
8 lines
141 B
TypeScript
|
declare global {
|
||
|
interface INotification {
|
||
|
level: 'warning' | 'error' | 'info' | 'success'
|
||
|
title: string
|
||
|
message: string
|
||
|
}
|
||
|
}
|