Skip to content

Commit

Permalink
fix(spellcheck): put an any on it (#2476)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdbradley authored May 27, 2020
1 parent e737f79 commit 1418c04
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/declarations/stencil-public-runtime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1206,7 +1206,7 @@ export namespace JSXBase {
hidden?: boolean;
id?: string;
lang?: string;
spellcheck?: 'true' | 'false';
spellcheck?: 'true' | 'false' | any;
style?: { [key: string]: string | undefined };
tabIndex?: number;
tabindex?: number | string;
Expand Down Expand Up @@ -1376,7 +1376,7 @@ export namespace JSXBase {
'hanging'?: number | string;
'horiz-adv-x'?: number | string;
'horiz-origin-x'?: number | string;
'href'?: string,
'href'?: string;
'ideographic'?: number | string;
'image-rendering'?: number | string;
'in2'?: number | string;
Expand Down

0 comments on commit 1418c04

Please sign in to comment.