Add typing for bind() which is also needed for demo

This commit is contained in:
Alex Eagle
2015-05-07 23:56:31 -07:00
parent 6c2589a633
commit 396000ead5
2 changed files with 23 additions and 2 deletions

View File

@@ -602,4 +602,21 @@ declare module "angular2/angular2" {
*
*/
function Switch(): void;
}
}
declare module "angular2/di" {
/**
* Provides an API for imperatively constructing {@link Binding}s.
*
* This is only relevant for JavaScript. See {@link BindingBuilder}.
*
* ## Example
*
* ```javascript
* bind(MyInterface).toClass(MyClass)
*
* ```
*
*/
function bind(token: any): any;
}