Update angular2.d.ts for alpha.26

This commit is contained in:
Alex Eagle
2015-06-05 16:05:26 -07:00
parent 8b7cc13f6d
commit 40b0c26618
2 changed files with 5144 additions and 417 deletions
+2 -3
View File
@@ -2,7 +2,6 @@
// Use Typescript 1.4 style imports
import ng = require("angular2/angular2");
import di = require("angular2/di");
class Service {
@@ -17,11 +16,11 @@ class Cmp {
Cmp.annotations = [
ng.Component({
selector: 'cmp',
injectables: [Service, di.bind(Service2).toValue(null)]
injectables: [Service, ng.bind(Service2).toValue(null)]
}),
ng.View({
template: '{{greeting}} world!',
directives: [ng.For, ng.If]
directives: [ng.NgFor, ng.NgIf]
})
];