填写这份《一分钟调查》,帮我们(开发组)做得更好!去填写Home

MetaDefinition

表示 HTML <meta> 元素的属性。该元素本身由一个内部 HTMLMetaElement 表示。

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;
};
    

参见