mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-04-12 08:34:32 +00:00
Add typing for bind() which is also needed for demo
This commit is contained in:
19
angular2/angular2.d.ts
vendored
19
angular2/angular2.d.ts
vendored
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user