You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

21 lines
520 B

export class AlertSrv {
private $timeout;
private $sce;
private $rootScope;
private $modal;
list: any[];
/** @ngInject */
constructor($timeout: any, $sce: any, $rootScope: any, $modal: any) {}
init(): void {}
set(title: any, text: any, severity: any, timeout: any): {
title: any;
text: any;
severity: any;
}
{
return { title: '', text: '', severity: '' }
}
clear(alert: any): void {}
clearAll(): void {}
showConfirmModal(payload: any): void {}
}