tauri-notice-window 1.0.15 → 1.0.16

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.
package/dist/index.js CHANGED
@@ -2674,8 +2674,8 @@ class v {
2674
2674
  * Gets the Webview for the webview associated with the given label.
2675
2675
  * @example
2676
2676
  * ```typescript
2677
- * import { Webview } from '@tauri-apps/api/webviewWindow';
2678
- * const mainWebview = Webview.getByLabel('main');
2677
+ * import { WebviewWindow } from '@tauri-apps/api/webviewWindow';
2678
+ * const mainWebview = WebviewWindow.getByLabel('main');
2679
2679
  * ```
2680
2680
  *
2681
2681
  * @param label The webview label.
@@ -2699,7 +2699,7 @@ class v {
2699
2699
  return X();
2700
2700
  }
2701
2701
  /**
2702
- * Listen to an emitted event on this webivew window.
2702
+ * Listen to an emitted event on this webview window.
2703
2703
  *
2704
2704
  * @example
2705
2705
  * ```typescript