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
This commit is contained in:
Basarat Ali Syed
2015-03-12 10:47:32 +11:00
parent c594427c40
commit d13c42ba67

View File

@@ -13,6 +13,9 @@ interface Function {
$inject?: string[];
}
// Collapse ng into angular
import angular = ng;
// Support AMD require
declare module 'angular' {
export = angular;