@wdio/globals 8.0.0-alpha.213 → 8.0.0-alpha.214
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.
- package/package.json +3 -3
- package/types.d.ts +3 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wdio/globals",
|
|
3
|
-
"version": "8.0.0-alpha.
|
|
3
|
+
"version": "8.0.0-alpha.214+fada97c78",
|
|
4
4
|
"description": "A helper utility for importing global variables directly",
|
|
5
5
|
"author": "Christian Bromann <mail@bromann.dev>",
|
|
6
6
|
"homepage": "https://github.com/webdriverio/webdriverio/tree/main/packages/wdio-globals",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"access": "public"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"webdriverio": "
|
|
31
|
+
"webdriverio": "7.20.7"
|
|
32
32
|
},
|
|
33
|
-
"gitHead": "
|
|
33
|
+
"gitHead": "fada97c788183c810b20025ca69680ae5a8ed45b"
|
|
34
34
|
}
|
package/types.d.ts
CHANGED
|
@@ -1,16 +1,19 @@
|
|
|
1
1
|
type BrowserType = import('webdriverio').Browser<'async'>
|
|
2
2
|
type ElementType = import('webdriverio').Element<'async'>
|
|
3
|
+
type ElementArrayType = import('webdriverio').ElementArray
|
|
3
4
|
type MultiRemoteBrowserType = import('webdriverio').MultiRemoteBrowser<'async'>
|
|
4
5
|
|
|
5
6
|
declare namespace WebdriverIOAsync {
|
|
6
7
|
interface Browser {}
|
|
7
8
|
interface Element {}
|
|
9
|
+
interface ElementArray {}
|
|
8
10
|
interface MultiRemoteBrowser {}
|
|
9
11
|
}
|
|
10
12
|
|
|
11
13
|
declare namespace WebdriverIO {
|
|
12
14
|
interface Browser extends BrowserType, WebdriverIOAsync.Browser { }
|
|
13
15
|
interface Element extends ElementType, WebdriverIOAsync.Element { }
|
|
16
|
+
interface ElementArray extends ElementArrayType, WebdriverIOAsync.ElementArray { }
|
|
14
17
|
// @ts-expect-error
|
|
15
18
|
interface MultiRemoteBrowser extends MultiRemoteBrowserType, WebdriverIOAsync.MultiRemoteBrowser { }
|
|
16
19
|
}
|