7 lines
211 B
TypeScript
7 lines
211 B
TypeScript
|
export function showErrorNotification(text: string): void {
|
||
|
showNotification(text, false);
|
||
|
}
|
||
|
|
||
|
export function showNotification(text: string, status = true): void {
|
||
|
window['showNotification'](text, status);
|
||
|
}
|