mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
16 lines
299 B
TypeScript
16 lines
299 B
TypeScript
/// <reference path="angular-loading-bar.d.ts" />
|
|
|
|
var app = angular.module('testModule', ['angular-loading-bar']);
|
|
|
|
class TestController {
|
|
|
|
constructor($http: ng.IHttpService) {
|
|
|
|
$http.get("http://xyz.com", { ignoreLoadingBar: true })
|
|
|
|
}
|
|
|
|
}
|
|
|
|
app.controller('TestController', TestController);
|