build: allow users to specify --strictNullChecks (#14382)

PR Close #14382
This commit is contained in:
Alex Eagle
2017-02-08 19:50:16 -08:00
committed by Miško Hevery
parent 96073e51c3
commit 03e855ae8f
8 changed files with 72 additions and 54 deletions

View File

@ -71,7 +71,7 @@ export declare class Meta {
}
/** @experimental */
export interface MetaDefinition {
export declare type MetaDefinition = {
charset?: string;
content?: string;
httpEquiv?: string;
@ -81,8 +81,9 @@ export interface MetaDefinition {
property?: string;
scheme?: string;
url?: string;
} & {
[prop: string]: string;
}
};
/** @deprecated */
export declare class NgProbeToken {