Skip to content

Commit

Permalink
fix(declarations): add missing event handler types (#5964)
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-bromann authored Aug 30, 2024
1 parent 15f3b26 commit 6ef1334
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/declarations/stencil-public-runtime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1737,6 +1737,10 @@ export namespace JSXBase {
onSubmitCapture?: (event: Event) => void;
onInvalid?: (event: Event) => void;
onInvalidCapture?: (event: Event) => void;
onBeforeToggle?: (event: Event) => void;
onBeforeToggleCapture?: (event: Event) => void;
onToggle?: (event: Event) => void;
onToggleCapture?: (event: Event) => void;

// Image Events
onLoad?: (event: Event) => void;
Expand Down

0 comments on commit 6ef1334

Please sign in to comment.