Files
DefinitelyTyped/types/ng-notify/ng-notify-tests.ts
2017-03-24 14:27:52 -07:00

8 lines
214 B
TypeScript

class NgNotifyTestController {
static $inject = ['$scope', 'ngNotify'];
constructor($scope:ng.IScope, ngNotify:ngNotify.INotifyService) {
ngNotify.set('Your error message goes here!', 'error');
}
};