Skip to content

Commit

Permalink
fix(events): update focusin/focusout types
Browse files Browse the repository at this point in the history
  • Loading branch information
claviska committed Nov 20, 2020
1 parent be7b233 commit 513c571
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/declarations/stencil-public-runtime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1598,10 +1598,10 @@ export namespace JSXBase {
// Focus Events
onFocus?: (event: FocusEvent) => void;
onFocusCapture?: (event: FocusEvent) => void;
onFocusIn?: (event: FocusEvent) => void;
onFocusInCapture?: (event: FocusEvent) => void;
onFocusOut?: (event: FocusEvent) => void;
onFocusOutCapture?: (event: FocusEvent) => void;
onFocusin?: (event: FocusEvent) => void;
onFocusinCapture?: (event: FocusEvent) => void;
onFocusout?: (event: FocusEvent) => void;
onFocusoutCapture?: (event: FocusEvent) => void;
onBlur?: (event: FocusEvent) => void;
onBlurCapture?: (event: FocusEvent) => void;

Expand Down

0 comments on commit 513c571

Please sign in to comment.