@limrun/ui 0.4.2 → 0.5.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.
@@ -2,6 +2,7 @@ export declare const CONTROL_MSG_TYPE: {
2
2
  readonly INJECT_KEYCODE: 0;
3
3
  readonly INJECT_TEXT: 1;
4
4
  readonly INJECT_TOUCH_EVENT: 2;
5
+ readonly INJECT_TWO_FINGER_TOUCH_EVENT: 18;
5
6
  readonly INJECT_SCROLL_EVENT: 3;
6
7
  readonly BACK_OR_SCREEN_ON: 4;
7
8
  readonly EXPAND_NOTIFICATION_PANEL: 5;
@@ -1,3 +1,4 @@
1
1
  export declare function createTouchControlMessage(action: number, pointerId: number, videoWidth: number, videoHeight: number, x: number, y: number, pressure?: number, actionButton?: number, buttons?: number): ArrayBuffer;
2
+ export declare function createTwoFingerTouchControlMessage(action: number, videoWidth: number, videoHeight: number, x0: number, y0: number, x1: number, y1: number): ArrayBuffer;
2
3
  export declare function createSetClipboardMessage(text: string, paste?: boolean): ArrayBuffer;
3
4
  export declare function createInjectKeycodeMessage(action: number, keycode: number, repeat?: number, metaState?: number): ArrayBuffer;