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

Eliminate the following compiler error when using TS 1.9+ with strict null checking enabled:

node_modules/@angular/core/src/util/decorators.d.ts(9,5): error TS2411: Property 'extends' of type 'Type | undefined' is not assignable to string index type 'Type | Function | any[]'.

https://github.com/angular/angular/issues/8720
This commit is contained in:
opensrcken 2016-05-31 18:25:48 -07:00 committed by Miško Hevery
parent 0c6b16c208
commit 7e352a27f7
1 changed files with 1 additions and 1 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[];
[x: string]: Type | Function | any[] | undefined;
}
/**