@types/k6 0.45.0 → 0.45.1

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.
@@ -1,43 +0,0 @@
1
- import { MouseClickOptions, MouseDownUpOptions, MouseMultiClickOptions } from './';
2
-
3
- /**
4
- * Mouse provides an API for managing a virtual mouse.
5
- */
6
- export class Mouse {
7
- /**
8
- * Shortcut for `mouse.move(x, y)`, `mouse.down()`, `mouse.up()`.
9
- * @param x The x position.
10
- * @param y The y position.
11
- * @param options The click options.
12
- */
13
- click(x: number, y: number, options?: MouseMultiClickOptions): void;
14
-
15
- /**
16
- * Shortcut for `mouse.move(x, y)`, `mouse.down()`, `mouse.up()`, `mouse.down()`,
17
- * `mouse.up()`.
18
- * @param x The x position.
19
- * @param y The y position.
20
- * @param options The click options.
21
- */
22
- dblclick(x: number, y: number, options?: MouseClickOptions): void;
23
-
24
- /**
25
- * Dispatches a `mousedown` event.
26
- * @param options The mouse down options.
27
- */
28
- down(options?: MouseDownUpOptions): void;
29
-
30
- /**
31
- * Dispatches a `mousemove` event.
32
- * @param x The x position.
33
- * @param y The y position.
34
- * @param options The mouse move options.
35
- */
36
- move(x: number, y: number, options?: { steps?: number }): void;
37
-
38
- /**
39
- * Dispatches a `mouseup` event.
40
- * @param options The mouse up options.
41
- */
42
- up(options?: MouseDownUpOptions): void;
43
- }