@types/k6 0.44.0 → 0.44.1
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.
- k6/README.md +2 -2
- k6/experimental/browser.d.ts +1573 -0
- k6/index.d.ts +2 -0
- k6/package.json +7 -2
k6/index.d.ts
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
// Oleg Bespalov <https://github.com/olegbespalov>
|
|
9
9
|
// Pepe Cano <https://github.com/ppcano>
|
|
10
10
|
// Nicole van der Hoeven <https://github.com/nicolevanderhoeven>
|
|
11
|
+
// Ankur Agarwal <https://github.com/ankur22>
|
|
11
12
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
12
13
|
// TypeScript Version: 3.9
|
|
13
14
|
|
|
@@ -41,6 +42,7 @@ import './html';
|
|
|
41
42
|
import './http';
|
|
42
43
|
import './metrics';
|
|
43
44
|
import './options';
|
|
45
|
+
import './experimental/browser';
|
|
44
46
|
import './experimental/redis';
|
|
45
47
|
import './experimental/timers';
|
|
46
48
|
import './experimental/tracing';
|
k6/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/k6",
|
|
3
|
-
"version": "0.44.
|
|
3
|
+
"version": "0.44.1",
|
|
4
4
|
"description": "TypeScript definitions for k6",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/k6",
|
|
6
6
|
"license": "MIT",
|
|
@@ -44,6 +44,11 @@
|
|
|
44
44
|
"name": "Nicole van der Hoeven",
|
|
45
45
|
"url": "https://github.com/nicolevanderhoeven",
|
|
46
46
|
"githubUsername": "nicolevanderhoeven"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"name": "Ankur Agarwal",
|
|
50
|
+
"url": "https://github.com/ankur22",
|
|
51
|
+
"githubUsername": "ankur22"
|
|
47
52
|
}
|
|
48
53
|
],
|
|
49
54
|
"main": "",
|
|
@@ -55,6 +60,6 @@
|
|
|
55
60
|
},
|
|
56
61
|
"scripts": {},
|
|
57
62
|
"dependencies": {},
|
|
58
|
-
"typesPublisherContentHash": "
|
|
63
|
+
"typesPublisherContentHash": "682e46b4410e1338c96b7b05df4cb618809adceb3857d43f06b155bfbd799e21",
|
|
59
64
|
"typeScriptVersion": "4.3"
|
|
60
65
|
}
|