fix(closure): suppress some closure compiler warnings (#14198)

PR Close #14198
This commit is contained in:
Alex Eagle
2017-01-30 16:25:15 -08:00
committed by Miško Hevery
parent 104c157ef6
commit 22058298d3
4 changed files with 17 additions and 0 deletions

View File

@ -243,6 +243,10 @@ function _callAndReportToErrorHandler(errorHandler: ErrorHandler, callback: () =
}
}
/**
* workaround https://github.com/angular/tsickle/issues/350
* @suppress {checkTypes}
*/
@Injectable()
export class PlatformRef_ extends PlatformRef {
private _modules: NgModuleRef<any>[] = [];
@ -404,6 +408,10 @@ export abstract class ApplicationRef {
abstract get viewCount(): number;
}
/**
* workaround https://github.com/angular/tsickle/issues/350
* @suppress {checkTypes}
*/
@Injectable()
export class ApplicationRef_ extends ApplicationRef {
/** @internal */