@netless/window-manager 0.4.66-beta.0 → 0.4.67-beta.0

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.
@@ -40,7 +40,7 @@ export declare class MainViewProxy {
40
40
  removeMainViewListener(): void;
41
41
  private mainViewClickListener;
42
42
  mainViewClickHandler(): Promise<void>;
43
- setMainViewSize: import("lodash").DebouncedFunc<(size: any) => void>;
43
+ setMainViewSize: import("lodash").DebouncedFunc<(size: Size) => void>;
44
44
  private addCameraListener;
45
45
  private removeCameraListener;
46
46
  private _syncMainViewTimer;
package/dist/index.d.ts CHANGED
@@ -183,8 +183,9 @@ export declare class WindowManager extends InvisiblePlugin<WindowMangerAttribute
183
183
  * 返回一个用于撤销此监听的函数
184
184
  */
185
185
  onAppEvent(kind: string, listener: (args: {
186
- type: string;
186
+ kind: string;
187
187
  appId: string;
188
+ type: string;
188
189
  value: any;
189
190
  }) => void): () => void;
190
191
  /**