Alexey Velikiy
6 years ago
committed by
GitHub
5 changed files with 28 additions and 9 deletions
@ -1,12 +1,8 @@
|
||||
language: node_js |
||||
|
||||
node_js: |
||||
- "8" |
||||
|
||||
before_script: |
||||
before_script: |
||||
- npm install |
||||
|
||||
script: npm test |
||||
|
||||
notifications: |
||||
email: false |
||||
email: false |
||||
|
@ -0,0 +1,21 @@
|
||||
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 {} |
||||
} |
Loading…
Reference in new issue