Skip to content

Commit 17e2884

Browse files
committed
Update WebDriverIO import style and clean up unused interface
1 parent 5f44d8b commit 17e2884

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

src/tools/appautomate.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ import logger from "../logger";
55
import config from "../config";
66
import { trackMCP } from "../lib/instrumentation";
77
import { maybeCompressBase64 } from "../lib/utils";
8-
const { remote } = require('webdriverio');
8+
//eslint-disable-next-line
9+
const { remote } = require("webdriverio");
910

1011
import {
1112
getDevicesAndBrowsers,
@@ -34,10 +35,6 @@ interface PlatformDevices {
3435
devices: Device[];
3536
}
3637

37-
interface WebDriver {
38-
remote(options: any): Promise<any>;
39-
}
40-
4138
enum Platform {
4239
ANDROID = "android",
4340
IOS = "ios",

0 commit comments

Comments
 (0)