fix: prevent strictNullChecks support until #15432 is fixed (#15434)

This commit is contained in:
Igor Minar
2017-03-23 14:54:19 -07:00
committed by Victor Berchet
parent 0dda01e37c
commit b800a0c824
5 changed files with 14 additions and 4 deletions

View File

@ -14,3 +14,9 @@
export * from './src/core';
// This file only reexports content of the `src` folder. Keep it that way.
// This is a hack to prevent people from turning on strictNullChecks. See #15432
export declare interface ɵStrictNullChecksNotSupported {
dontUseStrictNullChecksWithAngularYetSeeIssue15432: string|null;
[key: string]: string;
}