From d13c42ba67b6d6620005f4d944ca05260253fe7c Mon Sep 17 00:00:00 2001 From: Basarat Ali Syed Date: Thu, 12 Mar 2015 10:47:32 +1100 Subject: [PATCH] angular: import should bring in the type information as well closes https://github.com/borisyankov/DefinitelyTyped/issues/3670 closes https://github.com/borisyankov/DefinitelyTyped/pull/3714 --- angularjs/angular.d.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/angularjs/angular.d.ts b/angularjs/angular.d.ts index e5f6f779eb..6ead21da5e 100755 --- a/angularjs/angular.d.ts +++ b/angularjs/angular.d.ts @@ -13,6 +13,9 @@ interface Function { $inject?: string[]; } +// Collapse ng into angular +import angular = ng; + // Support AMD require declare module 'angular' { export = angular;