Skip to content

Commit

Permalink
fix(): add types for toggle event of html5 details (#2421)
Browse files Browse the repository at this point in the history
fixes #2398
  • Loading branch information
pheekus authored May 6, 2020
1 parent ff7fb41 commit ebf42cf
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/declarations/stencil-public-runtime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -777,6 +777,7 @@ export namespace JSXBase {

export interface DetailsHTMLAttributes<T> extends HTMLAttributes<T> {
open?: boolean;
onToggle?: (event: Event) => void;
}

export interface DelHTMLAttributes<T> extends HTMLAttributes<T> {
Expand Down

0 comments on commit ebf42cf

Please sign in to comment.