MetaDefinition

From Get docs
< @angular/platform-browserAngular/docs/11/api/platform-browser/metadefinition


MetaDefinition

type-alias

Represents the attributes of an HTML <meta> element. The element itself is represented by the internal HTMLMetaElement.

type MetaDefinition = {
    charset?: string;
    content?: string;
    httpEquiv?: string;
    id?: string;
    itemprop?: string;
    name?: string;
    property?: string;
    scheme?: string;
    url?: string;
} & {
    [prop: string]: string;
};

See also


© 2010–2021 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://v11.angular.io/api/platform-browser/MetaDefinition