File tree Expand file tree Collapse file tree 4 files changed +12
-12
lines changed Expand file tree Collapse file tree 4 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 1
1
import { Button } from "../button.enum" ;
2
2
import { Key } from "../key.enum" ;
3
3
import { Point } from "../point.class" ;
4
- import { ClipboardAction } from "../provider/native/clipboardy-clipboard-action.class" ;
5
- import { KeyboardAction } from "../provider/native/libnut-keyboard-action.class" ;
6
- import { MouseAction } from "../provider/native/libnut-mouse-action.class" ;
7
4
import { NativeAdapter } from "./native.adapter.class" ;
8
- import { WindowAction } from "../provider/native/libnut-window-action.class" ;
5
+ import ClipboardAction from "../provider/native/clipboardy-clipboard-action.class" ;
6
+ import KeyboardAction from "../provider/native/libnut-keyboard-action.class" ;
7
+ import MouseAction from "../provider/native/libnut-mouse-action.class" ;
8
+ import WindowAction from "../provider/native/libnut-window-action.class" ;
9
9
10
10
jest . mock ( "../provider/native/clipboardy-clipboard-action.class" ) ;
11
11
jest . mock ( "../provider/native/libnut-mouse-action.class" ) ;
Original file line number Diff line number Diff line change @@ -2,14 +2,14 @@ import { Button } from "../button.enum";
2
2
import { Key } from "../key.enum" ;
3
3
import { Point } from "../point.class" ;
4
4
import { ClipboardActionProvider } from "../provider/native/clipboard-action-provider.interface" ;
5
- import { ClipboardAction } from "../provider/native/clipboardy-clipboard-action.class" ;
6
5
import { KeyboardActionProvider } from "../provider/native/keyboard-action-provider.interface" ;
7
6
import { MouseActionProvider } from "../provider/native/mouse-action-provider.interface" ;
8
- import { KeyboardAction } from "../provider/native/libnut-keyboard-action.class" ;
9
- import { MouseAction } from "../provider/native/libnut-mouse-action.class" ;
10
7
import { Region } from "../region.class" ;
11
8
import { WindowActionProvider } from "../provider/native/window-action-provider.interface" ;
12
- import { WindowAction } from "../provider/native/libnut-window-action.class" ;
9
+ import ClipboardAction from "../provider/native/clipboardy-clipboard-action.class" ;
10
+ import KeyboardAction from "../provider/native/libnut-keyboard-action.class" ;
11
+ import MouseAction from "../provider/native/libnut-mouse-action.class" ;
12
+ import WindowAction from "../provider/native/libnut-window-action.class" ;
13
13
14
14
/**
15
15
* {@link NativeAdapter } serves as an abstraction layer for all OS level interactions.
Original file line number Diff line number Diff line change 1
1
import { Image } from "../image.class" ;
2
2
import { MatchRequest } from "../match-request.class" ;
3
- import { ScreenAction } from "../provider/native/libnut-screen-action.class" ;
4
- import { TemplateMatchingFinder } from "../provider/opencv/template-matching-finder.class" ;
3
+ import ScreenAction from "../provider/native/libnut-screen-action.class" ;
4
+ import TemplateMatchingFinder from "../provider/opencv/template-matching-finder.class" ;
5
5
import { Region } from "../region.class" ;
6
6
import { VisionAdapter } from "./vision.adapter.class" ;
7
7
Original file line number Diff line number Diff line change 1
1
import { Image } from "../image.class" ;
2
2
import { MatchRequest } from "../match-request.class" ;
3
3
import { MatchResult } from "../match-result.class" ;
4
- import { ScreenAction } from "../provider/native/libnut-screen-action.class" ;
4
+ import ScreenAction from "../provider/native/libnut-screen-action.class" ;
5
5
import { ScreenActionProvider } from "../provider/native/screen-action-provider.interface" ;
6
6
import { DataSink } from "../provider/opencv/data-sink.interface" ;
7
7
import { FinderInterface } from "../provider/opencv/finder.interface" ;
8
8
import { ImageWriter } from "../provider/opencv/image-writer.class" ;
9
- import { TemplateMatchingFinder } from "../provider/opencv/template-matching-finder.class" ;
9
+ import TemplateMatchingFinder from "../provider/opencv/template-matching-finder.class" ;
10
10
import { Region } from "../region.class" ;
11
11
12
12
/**
You can’t perform that action at this time.
0 commit comments