Skip to content

Commit

Permalink
fix: type annotation for script tag (#305)
Browse files Browse the repository at this point in the history
  • Loading branch information
ciscorn authored and manniL committed Jan 24, 2019
1 parent bf7035b commit f79f5b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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[]
Expand Down

0 comments on commit f79f5b3

Please sign in to comment.