Skip to content

Commit

Permalink
missed web browser callbacks
Browse files Browse the repository at this point in the history
  • Loading branch information
RobMayer committed Oct 29, 2023
1 parent 3454c13 commit 54fe293
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "jsx-in-ttpg",
"license": "UNLICENSE",
"version": "2.0.2",
"version": "2.1.0",
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --no-splitting",
"clean": "rm -rf ./dist",
Expand Down
6 changes: 3 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1073,9 +1073,9 @@ declare global {
ref?: RefValue<WebBrowser>;
disabled?: boolean;
hidden?: boolean;
onLoadStart?: () => void;
onLoadFinish?: () => void;
onChange?: () => void;
onLoadStart?: (el: WebBrowser) => void;
onLoadFinish?: (el: WebBrowser, success: boolean) => void;
onChange?: (el: WebBrowser, url: string) => void;
url?: string;
children?: never;
};
Expand Down

0 comments on commit 54fe293

Please sign in to comment.