fix: add typescript test for our typings (#9096)

* Revert "fix(d.ts): enable angular2 compilation with TS flag --strictNullChecks (#8902)"

This reverts commit 7e352a27f7.

* test: add typescript test for our typings
This commit is contained in:
Miško Hevery
2016-06-08 16:06:23 -07:00
parent 50acb96130
commit 87d824e1b4
7 changed files with 83 additions and 2 deletions

View File

@ -26,7 +26,7 @@ export interface ClassDefinition {
* Other methods on the class. Note that values should have type 'Function' but TS requires
* all properties to have a narrower type than the index signature.
*/
[x: string]: Type | Function | any[] | undefined;
[x: string]: Type | Function | any[];
}
/**