Ver código fonte

fix(docs): mark internal interfaces as such to deduplicate markdown output (#6260)

Fabian-Lars 2 anos atrás
pai
commit
1fa729b218
1 arquivos alterados com 3 adições e 0 exclusões
  1. 3 0
      tooling/api/src/window.ts

+ 3 - 0
tooling/api/src/window.ts

@@ -307,6 +307,7 @@ export type WindowLabel = string
 /**
  * A webview window handle allows emitting and listening to events from the backend that are tied to the window.
  *
+ * @ignore
  * @since 1.0.0
  */
 class WebviewWindowHandle {
@@ -406,6 +407,7 @@ class WebviewWindowHandle {
     return emit(event, this.label, payload)
   }
 
+  /** @ignore */
   _handleTauriEvent<T>(event: string, handler: EventCallback<T>): boolean {
     if (localTauriEvents.includes(event)) {
       if (!(event in this.listeners)) {
@@ -424,6 +426,7 @@ class WebviewWindowHandle {
 /**
  * Manage the current window object.
  *
+ * @ignore
  * @since 1.0.0
  */
 class WindowManager extends WebviewWindowHandle {