appium-uiautomator2-driver 6.7.5 → 6.7.7

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 (76) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/build/lib/commands/actions.d.ts +26 -29
  3. package/build/lib/commands/actions.d.ts.map +1 -1
  4. package/build/lib/commands/actions.js +19 -27
  5. package/build/lib/commands/actions.js.map +1 -1
  6. package/build/lib/commands/alert.d.ts +14 -22
  7. package/build/lib/commands/alert.d.ts.map +1 -1
  8. package/build/lib/commands/alert.js +8 -19
  9. package/build/lib/commands/alert.js.map +1 -1
  10. package/build/lib/commands/app-management.d.ts +7 -10
  11. package/build/lib/commands/app-management.d.ts.map +1 -1
  12. package/build/lib/commands/app-management.js +4 -14
  13. package/build/lib/commands/app-management.js.map +1 -1
  14. package/build/lib/commands/battery.d.ts +4 -5
  15. package/build/lib/commands/battery.d.ts.map +1 -1
  16. package/build/lib/commands/battery.js +4 -9
  17. package/build/lib/commands/battery.js.map +1 -1
  18. package/build/lib/commands/clipboard.d.ts +9 -13
  19. package/build/lib/commands/clipboard.d.ts.map +1 -1
  20. package/build/lib/commands/clipboard.js +7 -14
  21. package/build/lib/commands/clipboard.js.map +1 -1
  22. package/build/lib/commands/element.d.ts +64 -69
  23. package/build/lib/commands/element.d.ts.map +1 -1
  24. package/build/lib/commands/element.js +64 -84
  25. package/build/lib/commands/element.js.map +1 -1
  26. package/build/lib/commands/find.d.ts +13 -9
  27. package/build/lib/commands/find.d.ts.map +1 -1
  28. package/build/lib/commands/find.js +4 -16
  29. package/build/lib/commands/find.js.map +1 -1
  30. package/build/lib/commands/gestures.d.ts +87 -189
  31. package/build/lib/commands/gestures.d.ts.map +1 -1
  32. package/build/lib/commands/gestures.js +77 -204
  33. package/build/lib/commands/gestures.js.map +1 -1
  34. package/build/lib/commands/keyboard.d.ts +30 -41
  35. package/build/lib/commands/keyboard.d.ts.map +1 -1
  36. package/build/lib/commands/keyboard.js +22 -37
  37. package/build/lib/commands/keyboard.js.map +1 -1
  38. package/build/lib/commands/misc.d.ts +19 -35
  39. package/build/lib/commands/misc.d.ts.map +1 -1
  40. package/build/lib/commands/misc.js +15 -30
  41. package/build/lib/commands/misc.js.map +1 -1
  42. package/build/lib/commands/navigation.d.ts +11 -16
  43. package/build/lib/commands/navigation.d.ts.map +1 -1
  44. package/build/lib/commands/navigation.js +9 -17
  45. package/build/lib/commands/navigation.js.map +1 -1
  46. package/build/lib/commands/viewport.d.ts +23 -22
  47. package/build/lib/commands/viewport.d.ts.map +1 -1
  48. package/build/lib/commands/viewport.js +17 -24
  49. package/build/lib/commands/viewport.js.map +1 -1
  50. package/build/tsconfig.tsbuildinfo +1 -1
  51. package/lib/commands/actions.ts +95 -0
  52. package/lib/commands/alert.ts +46 -0
  53. package/lib/commands/app-management.ts +25 -0
  54. package/lib/commands/battery.ts +19 -0
  55. package/lib/commands/clipboard.ts +29 -0
  56. package/lib/commands/element.ts +180 -0
  57. package/lib/commands/find.ts +48 -0
  58. package/lib/commands/gestures.ts +297 -0
  59. package/lib/commands/keyboard.ts +102 -0
  60. package/lib/commands/misc.ts +67 -0
  61. package/lib/commands/navigation.ts +32 -0
  62. package/lib/commands/viewport.ts +78 -0
  63. package/npm-shrinkwrap.json +16 -46
  64. package/package.json +1 -1
  65. package/lib/commands/actions.js +0 -107
  66. package/lib/commands/alert.js +0 -63
  67. package/lib/commands/app-management.js +0 -32
  68. package/lib/commands/battery.js +0 -23
  69. package/lib/commands/clipboard.js +0 -37
  70. package/lib/commands/element.js +0 -261
  71. package/lib/commands/find.js +0 -47
  72. package/lib/commands/gestures.js +0 -446
  73. package/lib/commands/keyboard.js +0 -108
  74. package/lib/commands/misc.js +0 -109
  75. package/lib/commands/navigation.js +0 -33
  76. package/lib/commands/viewport.js +0 -100
@@ -1,212 +1,110 @@
1
+ import type { Element as AppiumElement } from '@appium/types';
2
+ import type { AndroidUiautomator2Driver } from '../driver';
1
3
  /**
2
- * Performs a simple click/tap gesture
3
- *
4
- * @this {AndroidUiautomator2Driver}
5
- * @param {string} [elementId] The id of the element to be clicked.
6
- * If the element is missing then both click offset coordinates must be provided.
7
- * If both the element id and offset are provided then the coordinates are parsed
8
- * as relative offsets from the top left corner of the element.
9
- * @param {number} [x] The x coordinate to click on.
10
- * @param {number} [y] The y coordinate to click on.
11
- * @returns {Promise<void>}
12
- * @throws {Error} if provided options are not valid
4
+ * Performs a simple click/tap gesture.
5
+ * @param elementId - Optional element to use as the origin for the click. If not provided, uses screen coordinates.
6
+ * @param x - Optional X offset from the element origin or screen.
7
+ * @param y - Optional Y offset from the element origin or screen.
13
8
  */
14
- export function mobileClickGesture(this: import("../driver").AndroidUiautomator2Driver, elementId?: string, x?: number, y?: number): Promise<void>;
9
+ export declare function mobileClickGesture(this: AndroidUiautomator2Driver, elementId?: AppiumElement | string, x?: number, y?: number): Promise<void>;
15
10
  /**
16
- * Performs a click that lasts for the given duration
17
- *
18
- * @this {AndroidUiautomator2Driver}
19
- * @param {string} [elementId] The id of the element to be clicked.
20
- * If the element is missing then both click offset coordinates must be provided.
21
- * If both the element id and offset are provided then the coordinates are parsed
22
- * as relative offsets from the top left corner of the element.
23
- * @param {number} [x] The x coordinate to click on.
24
- * @param {number} [y] The y coordinate to click on.
25
- * @param {number} [duration] Click duration in milliseconds. The value must not be negative.
26
- * Default is 500.
27
- * @returns {Promise<void>}
28
- * @throws {Error} if provided options are not valid
11
+ * Performs a long click with an optional duration.
12
+ * @param elementId - Optional element to use as the origin for the long click.
13
+ * @param x - Optional X offset from the element origin or screen.
14
+ * @param y - Optional Y offset from the element origin or screen.
15
+ * @param duration - Optional duration of the long press in milliseconds.
29
16
  */
30
- export function mobileLongClickGesture(this: import("../driver").AndroidUiautomator2Driver, elementId?: string, x?: number, y?: number, duration?: number): Promise<void>;
17
+ export declare function mobileLongClickGesture(this: AndroidUiautomator2Driver, elementId?: AppiumElement | string, x?: number, y?: number, duration?: number): Promise<void>;
31
18
  /**
32
- * Performs a click that lasts for the given duration
33
- * @this {AndroidUiautomator2Driver}
34
- * @param {string} [elementId] The id of the element to be clicked.
35
- * If the element is missing then both click offset coordinates must be provided.
36
- * If both the element id and offset are provided then the coordinates are parsed
37
- * as relative offsets from the top left corner of the element.
38
- * @param {number} [x] The x coordinate to click on.
39
- * @param {number} [y] The y coordinate to click on.
40
- * @returns {Promise<void>}
41
- * @throws {Error} if provided options are not valid
19
+ * Performs a double-click gesture.
20
+ * @param elementId - Optional element to use as the origin for the double click.
21
+ * @param x - Optional X offset from the element origin or screen.
22
+ * @param y - Optional Y offset from the element origin or screen.
42
23
  */
43
- export function mobileDoubleClickGesture(this: import("../driver").AndroidUiautomator2Driver, elementId?: string, x?: number, y?: number): Promise<void>;
24
+ export declare function mobileDoubleClickGesture(this: AndroidUiautomator2Driver, elementId?: AppiumElement | string, x?: number, y?: number): Promise<void>;
44
25
  /**
45
- * Drags this object to the specified location.
46
- * @this {AndroidUiautomator2Driver}
47
- * @param {string} [elementId] The id of the element to be dragged.
48
- * If the element id is missing then the start coordinates must be provided.
49
- * If both the element id and the start coordinates are provided then these
50
- * coordinates are considered as offsets from the top left element corner.
51
- * @param {number} [startX] The x coordinate where the dragging starts
52
- * @param {number} [startY] The y coordinate where the dragging starts
53
- * @param {number} [endX] The x coordinate where the dragging ends
54
- * @param {number} [endY] The y coordinate where the dragging ends
55
- * @param {number} [speed] The speed at which to perform this gesture in pixels per second.
56
- * The value must not be negative.
57
- * Default is 2500 * displayDensity.
58
- * @returns {Promise<void>}
59
- * @throws {Error} if provided options are not valid
26
+ * Drags from a start point to an end point.
27
+ * @param elementId - Optional element to use as the origin for the drag.
28
+ * @param startX - X coordinate of the drag start point.
29
+ * @param startY - Y coordinate of the drag start point.
30
+ * @param endX - X coordinate of the drag end point.
31
+ * @param endY - Y coordinate of the drag end point.
32
+ * @param speed - Optional speed of the drag gesture.
60
33
  */
61
- export function mobileDragGesture(this: import("../driver").AndroidUiautomator2Driver, elementId?: string, startX?: number, startY?: number, endX?: number, endY?: number, speed?: number): Promise<void>;
34
+ export declare function mobileDragGesture(this: AndroidUiautomator2Driver, elementId?: AppiumElement | string, startX?: number, startY?: number, endX?: number, endY?: number, speed?: number): Promise<void>;
62
35
  /**
63
- * Drags to the specified location.
64
- *
65
- * @throws {Error} if provided options are not valid
66
- * @this {AndroidUiautomator2Driver}
67
- * @param {string} direction Direction of the fling.
68
- * Acceptable values are: `up`, `down`, `left` and `right` (case insensitive).
69
- * @param {string} [elementId] The id of the element to be flinged.
70
- * If the element id is missing then fling bounding area must be provided.
71
- * If both the element id and the fling bounding area are provided then this
72
- * area is effectively ignored.
73
- * @param {number} [left] The left coordinate of the fling bounding area.
74
- * @param {number} [top] The top coordinate of the fling bounding area.
75
- * @param {number} [width] The width of the fling bounding area.
76
- * @param {number} [height] The height of the fling bounding area.
77
- * @param {number} [speed] The speed at which to perform this gesture in pixels per second.
78
- * The value must be greater than the minimum fling velocity for the given view (50 by default).
79
- * Default is 7500 * displayDensity.
80
- * @returns {Promise<boolean>} True if the object can still scroll in the given direction.
36
+ * Performs a fling gesture and reports if further scrolling is possible.
37
+ * @param direction - Direction of the fling ('up', 'down', 'left', 'right').
38
+ * @param elementId - Optional element to use as the origin for the fling.
39
+ * @param left - Optional left coordinate of the fling area.
40
+ * @param top - Optional top coordinate of the fling area.
41
+ * @param width - Optional width of the fling area.
42
+ * @param height - Optional height of the fling area.
43
+ * @param speed - Optional speed of the fling gesture.
44
+ * @returns True if further scrolling is possible, false otherwise.
81
45
  */
82
- export function mobileFlingGesture(this: import("../driver").AndroidUiautomator2Driver, direction: string, elementId?: string, left?: number, top?: number, width?: number, height?: number, speed?: number): Promise<boolean>;
46
+ export declare function mobileFlingGesture(this: AndroidUiautomator2Driver, direction: string, elementId?: AppiumElement | string, left?: number, top?: number, width?: number, height?: number, speed?: number): Promise<boolean>;
83
47
  /**
84
- * Performs a pinch close gesture.
85
- * @this {AndroidUiautomator2Driver}
86
- * @param {number} percent The size of the pinch as a percentage of the pinch area size.
87
- * Valid values must be float numbers in range 0..1, where 1.0 is 100%
88
- * @param {string} [elementId] The id of the element to be pinched.
89
- * If the element id is missing then pinch bounding area must be provided.
90
- * If both the element id and the pinch bounding area are provided then the
91
- * area is effectively ignored.
92
- * @param {number} [left] The left coordinate of the pinch bounding area.
93
- * @param {number} [top] The top coordinate of the pinch bounding area.
94
- * @param {number} [width] The width of the pinch bounding area.
95
- * @param {number} [height] The height of the pinch bounding area.
96
- * @param {number} [speed] The speed at which to perform this gesture in pixels per second.
97
- * The value must not be negative.
98
- * Default is 2500 * displayDensity.
99
- * @returns {Promise<void>}
100
- * @throws {Error} if provided options are not valid
48
+ * Performs a pinch-close gesture.
49
+ * @param percent - Percentage of the pinch (0-100).
50
+ * @param elementId - Optional element to use as the origin for the pinch.
51
+ * @param left - Optional left coordinate of the pinch area.
52
+ * @param top - Optional top coordinate of the pinch area.
53
+ * @param width - Optional width of the pinch area.
54
+ * @param height - Optional height of the pinch area.
55
+ * @param speed - Optional speed of the pinch gesture.
101
56
  */
102
- export function mobilePinchCloseGesture(this: import("../driver").AndroidUiautomator2Driver, percent: number, elementId?: string, left?: number, top?: number, width?: number, height?: number, speed?: number): Promise<void>;
57
+ export declare function mobilePinchCloseGesture(this: AndroidUiautomator2Driver, percent: number, elementId?: AppiumElement | string, left?: number, top?: number, width?: number, height?: number, speed?: number): Promise<void>;
103
58
  /**
104
- * Performs a pinch open gesture.
105
- * @this {AndroidUiautomator2Driver}
106
- * @param {number} percent The size of the pinch as a percentage of the pinch area size.
107
- * Valid values must be float numbers in range 0..1, where 1.0 is 100%
108
- * @param {string} [elementId] The id of the element to be pinched.
109
- * If the element id is missing then pinch bounding area must be provided.
110
- * If both the element id and the pinch bounding area are provided then the
111
- * area is effectively ignored.
112
- * @param {number} [left] The left coordinate of the pinch bounding area.
113
- * @param {number} [top] The top coordinate of the pinch bounding area.
114
- * @param {number} [width] The width of the pinch bounding area.
115
- * @param {number} [height] The height of the pinch bounding area.
116
- * @param {number} [speed] The speed at which to perform this gesture in pixels per second.
117
- * The value must not be negative.
118
- * Default is 2500 * displayDensity.
119
- * @returns {Promise<void>}
120
- * @throws {Error} if provided options are not valid
59
+ * Performs a pinch-open gesture.
60
+ * @param percent - Percentage of the pinch (0-100).
61
+ * @param elementId - Optional element to use as the origin for the pinch.
62
+ * @param left - Optional left coordinate of the pinch area.
63
+ * @param top - Optional top coordinate of the pinch area.
64
+ * @param width - Optional width of the pinch area.
65
+ * @param height - Optional height of the pinch area.
66
+ * @param speed - Optional speed of the pinch gesture.
121
67
  */
122
- export function mobilePinchOpenGesture(this: import("../driver").AndroidUiautomator2Driver, percent: number, elementId?: string, left?: number, top?: number, width?: number, height?: number, speed?: number): Promise<void>;
68
+ export declare function mobilePinchOpenGesture(this: AndroidUiautomator2Driver, percent: number, elementId?: AppiumElement | string, left?: number, top?: number, width?: number, height?: number, speed?: number): Promise<void>;
123
69
  /**
124
- * Performs a swipe gesture.
125
- * @this {AndroidUiautomator2Driver}
126
- * @param {string} direction Direction of the swipe.
127
- * Acceptable values are: `up`, `down`, `left` and `right` (case insensitive).
128
- * @param {number} percent The size of the swipe as a percentage of the swipe area size.
129
- * Valid values must be float numbers in range 0..1, where 1.0 is 100%.
130
- * @param {string} [elementId] The id of the element to be swiped.
131
- * If the element id is missing then swipe bounding area must be provided.
132
- * If both the element id and the swipe bounding area are provided then the
133
- * area is effectively ignored.
134
- * @param {number} [left] The left coordinate of the swipe bounding area.
135
- * @param {number} [top] The top coordinate of the swipe bounding area.
136
- * @param {number} [width] The width of the swipe bounding area.
137
- * @param {number} [height] The height of the swipe bounding area.
138
- * @param {number} [speed] The speed at which to perform this gesture in pixels per second.
139
- * The value must not be negative.
140
- * Default is 5000 * displayDensity.
141
- * @returns {Promise<void>}
142
- * @throws {Error} if provided options are not valid
70
+ * Performs a swipe gesture for the given direction and percent.
71
+ * @param direction - Direction of the swipe ('up', 'down', 'left', 'right').
72
+ * @param percent - Percentage of the swipe distance (0-100).
73
+ * @param elementId - Optional element to use as the origin for the swipe.
74
+ * @param left - Optional left coordinate of the swipe area.
75
+ * @param top - Optional top coordinate of the swipe area.
76
+ * @param width - Optional width of the swipe area.
77
+ * @param height - Optional height of the swipe area.
78
+ * @param speed - Optional speed of the swipe gesture.
143
79
  */
144
- export function mobileSwipeGesture(this: import("../driver").AndroidUiautomator2Driver, direction: string, percent: number, elementId?: string, left?: number, top?: number, width?: number, height?: number, speed?: number): Promise<void>;
80
+ export declare function mobileSwipeGesture(this: AndroidUiautomator2Driver, direction: string, percent: number, elementId?: AppiumElement | string, left?: number, top?: number, width?: number, height?: number, speed?: number): Promise<void>;
145
81
  /**
146
- * Performs a scroll gesture.
147
- *
148
- * @throws {Error} if provided options are not valid
149
- * @this {AndroidUiautomator2Driver}
150
- * @param {string} direction Direction of the scroll.
151
- * Acceptable values are: `up`, `down`, `left` and `right` (case insensitive).
152
- * @param {number} percent The size of the scroll as a percentage of the scrolling area size.
153
- * Valid values must be float numbers greater than zero, where 1.0 is 100%.
154
- * @param {string} [elementId] The id of the element to be scrolled.
155
- * If the element id is missing then scroll bounding area must be provided.
156
- * If both the element id and the scroll bounding area are provided then this
157
- * area is effectively ignored.
158
- * @param {number} [left] The left coordinate of the scroll bounding area.
159
- * @param {number} [top] The top coordinate of the scroll bounding area.
160
- * @param {number} [width] The width of the scroll bounding area.
161
- * @param {number} [height] The height of the scroll bounding area.
162
- * @param {number} [speed] The speed at which to perform this gesture in pixels per second.
163
- * The value must not be negative.
164
- * Default is 5000 * displayDensity.
165
- * @returns {Promise<boolean>} True if the object can still scroll in the given direction.
82
+ * Performs a scroll gesture and reports if further scrolling is possible.
83
+ * @param direction - Direction of the scroll ('up', 'down', 'left', 'right').
84
+ * @param percent - Percentage of the scroll distance (0-100).
85
+ * @param elementId - Optional element to use as the origin for the scroll.
86
+ * @param left - Optional left coordinate of the scroll area.
87
+ * @param top - Optional top coordinate of the scroll area.
88
+ * @param width - Optional width of the scroll area.
89
+ * @param height - Optional height of the scroll area.
90
+ * @param speed - Optional speed of the scroll gesture.
91
+ * @returns True if further scrolling is possible, false otherwise.
166
92
  */
167
- export function mobileScrollGesture(this: import("../driver").AndroidUiautomator2Driver, direction: string, percent: number, elementId?: string, left?: number, top?: number, width?: number, height?: number, speed?: number): Promise<boolean>;
93
+ export declare function mobileScrollGesture(this: AndroidUiautomator2Driver, direction: string, percent: number, elementId?: AppiumElement | string, left?: number, top?: number, width?: number, height?: number, speed?: number): Promise<boolean>;
168
94
  /**
169
- * Scrolls the given scrollable element `elementId` until `elementToId`
170
- * becomes visible. This function returns immediately if the `elementToId`
171
- * is already visible in the view port. Otherwise it would scroll
172
- * to the very beginning of the scrollable control and tries to reach the destination element
173
- * by scrolling its parent to the end step by step. The scroll direction (vertical or horizontal)
174
- * is detected automatically.
175
- * @this {AndroidUiautomator2Driver}
176
- * @param {string} elementId The identifier of the scrollable element, which is going to be scrolled.
177
- * It is required this element is a valid scrollable container and it was located
178
- * by `-android uiautomator` strategy.
179
- * @param {string} elementToId The identifier of the item, which belongs to the scrollable element above,
180
- * and which should become visible after the scrolling operation is finished.
181
- * It is required this element was located by `-android uiautomator` strategy.
182
- * @returns {Promise<void>}
183
- * @throws {Error} if the scrolling operation cannot be performed
95
+ * Scrolls a scrollable element until a target element becomes visible.
96
+ * @param elementId - ID of the scrollable element.
97
+ * @param elementToId - ID of the target element to scroll to.
98
+ * @throws {errors.InvalidArgumentError} If either elementId or elementToId is not provided.
184
99
  */
185
- export function mobileScrollBackTo(this: import("../driver").AndroidUiautomator2Driver, elementId: string, elementToId: string): Promise<void>;
100
+ export declare function mobileScrollBackTo(this: AndroidUiautomator2Driver, elementId?: string, elementToId?: string): Promise<void>;
186
101
  /**
187
- * Scrolls the given scrollable element until the element identified
188
- * by `strategy` and `selector` becomes visible. This function returns immediately if the
189
- * destination element is already visible in the view port. Otherwise it would scroll
190
- * to the very beginning of the scrollable control and tries to reach the destination element
191
- * by scrolling its parent to the end step by step. The scroll direction (vertical or horizontal)
192
- * is detected automatically.
193
- *
194
- * @this {AndroidUiautomator2Driver}
195
- * @param {string} strategy The following strategies are supported:
196
- * - `accessibility id` (UiSelector().description)
197
- * - `class name` (UiSelector().className)
198
- * - `-android uiautomator` (UiSelector)
199
- * @param {string} selector The corresponding lookup value for the given strategy.
200
- * @param {string} [elementId] The identifier of an element. It is required this element is a valid scrollable container
201
- * and it was located by `-android uiautomator` strategy.
202
- * If this property is not provided then the first currently available scrollable view
203
- * is selected for the interaction.
204
- * @param {number} [maxSwipes] The maximum number of swipes to perform on the target scrollable view in order to reach
205
- * the destination element. In case this value is unset then it would be retrieved from the
206
- * scrollable element itself (via `getMaxSearchSwipes()` property).
207
- * @returns {Promise<void>}
208
- * @throws {Error} if the scrolling operation cannot be performed
102
+ * Scrolls until an element located by the given strategy is visible.
103
+ * @param strategy - Locator strategy to use (e.g., 'id', 'xpath', 'class name').
104
+ * @param selector - Selector string for the element to find.
105
+ * @param elementId - Optional element to use as the origin for scrolling.
106
+ * @param maxSwipes - Optional maximum number of swipes to perform.
107
+ * @throws {errors.InvalidArgumentError} If either strategy or selector is not provided.
209
108
  */
210
- export function mobileScroll(this: import("../driver").AndroidUiautomator2Driver, strategy: string, selector: string, elementId?: string, maxSwipes?: number): Promise<void>;
211
- export type AndroidUiautomator2Driver = import("../driver").AndroidUiautomator2Driver;
109
+ export declare function mobileScroll(this: AndroidUiautomator2Driver, strategy: string, selector: string, elementId?: AppiumElement | string, maxSwipes?: number): Promise<void>;
212
110
  //# sourceMappingURL=gestures.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"gestures.d.ts","sourceRoot":"","sources":["../../../lib/commands/gestures.js"],"names":[],"mappings":"AAIA;;;;;;;;;;;;GAYG;AACH,oGATW,MAAM,MAIN,MAAM,MACN,MAAM,GACJ,OAAO,CAAC,IAAI,CAAC,CAYzB;AAED;;;;;;;;;;;;;;GAcG;AACH,wGAXW,MAAM,MAIN,MAAM,MACN,MAAM,aACN,MAAM,GAEJ,OAAO,CAAC,IAAI,CAAC,CAazB;AAED;;;;;;;;;;;GAWG;AACH,0GATW,MAAM,MAIN,MAAM,MACN,MAAM,GACJ,OAAO,CAAC,IAAI,CAAC,CAYzB;AAED;;;;;;;;;;;;;;;;GAgBG;AACH,mGAdW,MAAM,WAIN,MAAM,WACN,MAAM,SACN,MAAM,SACN,MAAM,UACN,MAAM,GAGJ,OAAO,CAAC,IAAI,CAAC,CAqBzB;AAED;;;;;;;;;;;;;;;;;;;GAmBG;AACH,mGAfW,MAAM,cAEN,MAAM,SAIN,MAAM,QACN,MAAM,UACN,MAAM,WACN,MAAM,UACN,MAAM,GAGJ,OAAO,CAAC,OAAO,CAAC,CAuB5B;AAED;;;;;;;;;;;;;;;;;;GAkBG;AACH,sGAhBW,MAAM,cAEN,MAAM,SAIN,MAAM,QACN,MAAM,UACN,MAAM,WACN,MAAM,UACN,MAAM,GAGJ,OAAO,CAAC,IAAI,CAAC,CAsBzB;AAED;;;;;;;;;;;;;;;;;;GAkBG;AACH,qGAhBW,MAAM,cAEN,MAAM,SAIN,MAAM,QACN,MAAM,UACN,MAAM,WACN,MAAM,UACN,MAAM,GAGJ,OAAO,CAAC,IAAI,CAAC,CAsBzB;AAED;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,mGAlBW,MAAM,WAEN,MAAM,cAEN,MAAM,SAIN,MAAM,QACN,MAAM,UACN,MAAM,WACN,MAAM,UACN,MAAM,GAGJ,OAAO,CAAC,IAAI,CAAC,CAwBzB;AAED;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,oGAjBW,MAAM,WAEN,MAAM,cAEN,MAAM,SAIN,MAAM,QACN,MAAM,UACN,MAAM,WACN,MAAM,UACN,MAAM,GAGJ,OAAO,CAAC,OAAO,CAAC,CAyB5B;AAED;;;;;;;;;;;;;;;;GAgBG;AACH,mGATW,MAAM,eAGN,MAAM,GAGJ,OAAO,CAAC,IAAI,CAAC,CAgBzB;AAED;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,4FAfW,MAAM,YAIN,MAAM,cACN,MAAM,cAIN,MAAM,GAGJ,OAAO,CAAC,IAAI,CAAC,CAsBzB;wCAwCY,OAAO,WAAW,EAAE,yBAAyB"}
1
+ {"version":3,"file":"gestures.d.ts","sourceRoot":"","sources":["../../../lib/commands/gestures.ts"],"names":[],"mappings":"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"}