build: allow users to specify --strictNullChecks (#14382)
PR Close #14382
This commit is contained in:
@ -14,18 +14,17 @@ import {DomAdapter} from '../dom/dom_adapter';
|
||||
*
|
||||
* @experimental
|
||||
*/
|
||||
export interface MetaDefinition {
|
||||
charset?: string;
|
||||
content?: string;
|
||||
httpEquiv?: string;
|
||||
id?: string;
|
||||
itemprop?: string;
|
||||
export type MetaDefinition = {
|
||||
charset?: string; content?: string; httpEquiv?: string; id?: string; itemprop?: string;
|
||||
name?: string;
|
||||
property?: string;
|
||||
scheme?: string;
|
||||
url?: string;
|
||||
} &
|
||||
{
|
||||
// TODO(IgorMinar): this type looks wrong
|
||||
[prop: string]: string;
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* A service that can be used to get and add meta tags.
|
||||
|
Reference in New Issue
Block a user