Skip to content
This repository was archived by the owner on Oct 1, 2025. It is now read-only.

Commit 64d6b3e

Browse files
authored
types: add http-equiv meta (#578)
fix #575
1 parent 14eb4af commit 64d6b3e

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

types/vue-meta.d.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,12 @@ export interface MetaPropertyEquiv extends MetaDataProperty {
7777
template?: (chunk: string) => string
7878
}
7979

80+
export interface MetaPropertyTrueEquiv extends MetaDataProperty {
81+
'http-equiv': string,
82+
content: string,
83+
template?: (chunk: string) => string
84+
}
85+
8086
export interface MetaPropertyName extends MetaDataProperty {
8187
name: string,
8288
content: string,
@@ -177,7 +183,7 @@ export interface MetaInfo {
177183
href: string
178184
}
179185

180-
meta?: (MetaPropertyCharset | MetaPropertyEquiv | MetaPropertyName | MetaPropertyMicrodata | MetaPropertyProperty)[]
186+
meta?: (MetaPropertyCharset | MetaPropertyEquiv | MetaPropertyTrueEquiv | MetaPropertyName | MetaPropertyMicrodata | MetaPropertyProperty)[]
181187
link?: (LinkPropertyBase | LinkPropertyHref | LinkPropertyHrefCallback)[]
182188
style?: StyleProperty[]
183189
script?: (ScriptPropertyText | ScriptPropertySrc | ScriptPropertySrcCallback | ScriptPropertyJson)[]

0 commit comments

Comments
 (0)