DefinitelyTyped/angular-notifications/angular-notifications-tests.ts
Tomasz Ducin a315ac7f88 typo fix
2015-07-31 09:47:12 +02:00

13 lines
461 B
TypeScript

/// <reference path="angular-notifications.d.ts" />
var myapp = angular.module("myapp", ["notifications"]);
myapp.controller("MyController", ["$scope", "notifications",
function ($scope:ng.IScope, notifications:angular.notifications.INotificationFactory) { // <-- Inject notifications
var userData = {'some': 'data', 'optional': true};
notification.info("Something happened", "here is the content of what happened", userData);
}
]);