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

MetaDefinition

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; };
      
      type MetaDefinition = {
    charset?: string;
    content?: string;
    httpEquiv?: string;
    id?: string;
    itemprop?: string;
    name?: string;
    property?: string;
    scheme?: string;
    url?: string;
} & {
    [prop: string]: string;
};
    

参见