File tree 1 file changed +7
-1
lines changed
1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -62,6 +62,12 @@ export interface MetaPropertyName extends MetaDataProperty {
62
62
template ?: ( chunk : string ) => string
63
63
}
64
64
65
+ export interface MetaPropertyMicrodata extends MetaDataProperty {
66
+ itemprop : string ,
67
+ content : string ,
68
+ template ?: ( chunk : string ) => string
69
+ }
70
+
65
71
// non-w3c interface
66
72
export interface MetaPropertyProperty extends MetaDataProperty {
67
73
property : string ,
@@ -123,7 +129,7 @@ export interface MetaInfo {
123
129
href : string
124
130
}
125
131
126
- meta ?: ( MetaPropertyCharset | MetaPropertyEquiv | MetaPropertyName | MetaPropertyProperty ) [ ]
132
+ meta ?: ( MetaPropertyCharset | MetaPropertyEquiv | MetaPropertyName | MetaPropertyMicrodata | MetaPropertyProperty ) [ ]
127
133
link ?: LinkProperty [ ]
128
134
style ?: StyleProperty [ ]
129
135
script ?: ( ScriptPropertyText | ScriptPropertySrc ) [ ]
You can’t perform that action at this time.
0 commit comments