@corelauncher/rod 1.0.4 → 1.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src-ts/index.ts +4 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@corelauncher/rod",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "Webview for bun based on tauri's tao and wry.",
5
5
  "keywords": [
6
6
  "corelauncher",
package/src-ts/index.ts CHANGED
@@ -1,4 +1,8 @@
1
1
  import Rod from "./classes/rod";
2
+ import type WebView from "./classes/webview";
3
+ import type Window from "./classes/window";
2
4
  export default Rod;
3
5
  export { Rod };
4
6
  export * from "./types";
7
+ export type { WebView };
8
+ export type { Window };