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" ;
1010
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" ;
2121
2222const screenActions = new VisionAdapter ( ) ;
2323const nativeActions = new NativeAdapter ( ) ;
@@ -32,14 +32,14 @@ const assert = new Assert(screen);
3232const { straightTo, up, down, left, right} = createMovementApi ( nativeActions , lineHelper ) ;
3333
3434export {
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 ,
4545} ;
0 commit comments