1
- import { NativeAdapter } from "./lib/adapter/native.adapter.class" ;
2
- import { VisionAdapter } from "./lib/adapter/vision.adapter.class" ;
3
- import { Assert } from "./lib/assert.class" ;
4
- import { Clipboard } from "./lib/clipboard.class" ;
5
- import { Keyboard } from "./lib/keyboard.class" ;
6
- import { Mouse } from "./lib/mouse.class" ;
7
- import { createMovementApi } from "./lib/movement.function" ;
8
- import { Screen } from "./lib/screen.class" ;
9
- import { LineHelper } from "./lib/util/linehelper.class" ;
1
+ import { NativeAdapter } from "./lib/adapter/native.adapter.class" ;
2
+ import { VisionAdapter } from "./lib/adapter/vision.adapter.class" ;
3
+ import { Assert } from "./lib/assert.class" ;
4
+ import { Clipboard } from "./lib/clipboard.class" ;
5
+ import { Keyboard } from "./lib/keyboard.class" ;
6
+ import { Mouse } from "./lib/mouse.class" ;
7
+ import { createMovementApi } from "./lib/movement.function" ;
8
+ import { Screen } from "./lib/screen.class" ;
9
+ import { LineHelper } from "./lib/util/linehelper.class" ;
10
10
11
- export { jestMatchers } from "./lib/expect/jest.matcher.function" ;
12
- export { sleep } from "./lib/sleep.function" ;
13
- export { Image } from "./lib/image.class" ;
14
- export { Key } from "./lib/key.enum" ;
15
- export { Button } from "./lib/button.enum" ;
16
- export { centerOf , randomPointIn } from "./lib/location.function" ;
17
- export { LocationParameters } from "./lib/locationparameters.class" ;
18
- export { linear } from "./lib/movementtype .function" ;
19
- export { Point } from "./lib/point.class" ;
20
- export { Region } from "./lib/region.class" ;
11
+ export { jestMatchers } from "./lib/expect/jest.matcher.function" ;
12
+ export { sleep } from "./lib/sleep.function" ;
13
+ export { Image } from "./lib/image.class" ;
14
+ export { Key } from "./lib/key.enum" ;
15
+ export { Button } from "./lib/button.enum" ;
16
+ export { centerOf , randomPointIn } from "./lib/location.function" ;
17
+ export { LocationParameters } from "./lib/locationparameters.class" ;
18
+ export { EasingFunction , linear } from "./lib/mouse-movement .function" ;
19
+ export { Point } from "./lib/point.class" ;
20
+ export { Region } from "./lib/region.class" ;
21
21
22
22
const screenActions = new VisionAdapter ( ) ;
23
23
const nativeActions = new NativeAdapter ( ) ;
@@ -32,14 +32,14 @@ const assert = new Assert(screen);
32
32
const { straightTo, up, down, left, right} = createMovementApi ( nativeActions , lineHelper ) ;
33
33
34
34
export {
35
- clipboard ,
36
- keyboard ,
37
- mouse ,
38
- screen ,
39
- assert ,
40
- straightTo ,
41
- up ,
42
- down ,
43
- left ,
44
- right ,
35
+ clipboard ,
36
+ keyboard ,
37
+ mouse ,
38
+ screen ,
39
+ assert ,
40
+ straightTo ,
41
+ up ,
42
+ down ,
43
+ left ,
44
+ right ,
45
45
} ;
0 commit comments