From 75d3187b7541a3dfdd0ce6da2882a0729b953deb Mon Sep 17 00:00:00 2001
From: Brandon Antonio Lorenzo <brandolin_a_@outlook.com>
Date: Mon, 25 Apr 2022 17:15:10 -0500
Subject: [PATCH] fix content and innerHTML typings in meta and script tags.

---
 types/vue-meta.d.ts | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/types/vue-meta.d.ts b/types/vue-meta.d.ts
index 8efb6058..6b25f34c 100644
--- a/types/vue-meta.d.ts
+++ b/types/vue-meta.d.ts
@@ -73,32 +73,32 @@ export interface MetaPropertyCharset extends MetaDataProperty {
 
 export interface MetaPropertyEquiv extends MetaDataProperty {
   httpEquiv: string,
-  content: string,
+  content: string | null | undefined,
   template?: (chunk: string) => string
 }
 
 export interface MetaPropertyTrueEquiv extends MetaDataProperty {
   'http-equiv': string,
-  content: string,
+  content: string | null | undefined,
   template?: (chunk: string) => string
 }
 
 export interface MetaPropertyName extends MetaDataProperty {
   name: string,
-  content: string,
+  content: string | null | undefined,
   template?: (chunk: string) => string
 }
 
 export interface MetaPropertyMicrodata extends MetaDataProperty {
   itemprop: string,
-  content: string,
+  content: string | null | undefined,
   template?: (chunk: string) => string
 }
 
 // non-w3c interface
 export interface MetaPropertyProperty extends MetaDataProperty {
   property: string,
-  content: string,
+  content: string | null | undefined,
   template?: (chunk: string) => string
 }
 
@@ -143,7 +143,7 @@ export interface ScriptPropertyBase extends MetaDataProperty {
 }
 
 export interface ScriptPropertyText extends ScriptPropertyBase {
-  innerHTML: string
+  innerHTML: string | null | undefined
 }
 
 export interface ScriptPropertySrc extends ScriptPropertyBase {
@@ -167,7 +167,7 @@ export interface ScriptPropertyJson extends ScriptPropertyBase {
 }
 
 export interface NoScriptProperty extends MetaDataProperty {
-  innerHTML: string,
+  innerHTML: string | null | undefined,
 }
 
 export interface MetaInfo {