Skip to content

Commit

Permalink
fix(declarations): add onCancel to dialog attributes (#4280)
Browse files Browse the repository at this point in the history
  • Loading branch information
tanner-reits committed Apr 18, 2023
1 parent 93273a2 commit 725ff7e
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 @@ -905,6 +905,7 @@ export namespace JSXBase {
}

export interface DialogHTMLAttributes<T> extends HTMLAttributes<T> {
onCancel?: (event: Event) => void;
onClose?: (event: Event) => void;
open?: boolean;
returnValue?: string;
Expand Down

0 comments on commit 725ff7e

Please sign in to comment.