2
0
mirror of https://github.com/tenrok/vue-meta.git synced 2026-06-07 15:52:25 +03:00

fix: type annotation for script tag (#305)

This commit is contained in:
Taku Fukada
2019-01-25 07:48:36 +09:00
committed by Alexander Lichter
parent bf7035baf5
commit f79f5b3d2f
+1 -1
View File
@@ -39,7 +39,7 @@ export interface MetaInfo {
link?: { rel: string, href: string, [key: string]: any }[]
style?: { cssText: string, type: string, [key: string]: any }[]
script?: { innerHTML: string, type: string, [key: string]: any }[]
script?: { innerHTML?: string, src?: string, type: string, [key: string]: any }[]
noscript?: { innerHTML: string, [key: string]: any }[]
__dangerouslyDisableSanitizers?: string[]