@types/k6 0.49.1 → 0.49.3
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/redis.d.ts +1 -1
- k6/package.json +3 -8
k6/README.md
CHANGED
|
@@ -8,8 +8,8 @@ This package contains type definitions for k6 (https://grafana.com/docs/k6/lates
|
|
|
8
8
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/k6.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Tue, 19 Mar 2024 08:35:31 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
|
|
14
14
|
# Credits
|
|
15
|
-
These definitions were written by [Mihail Stoykov](https://github.com/MStoykov), [Ivan](https://github.com/codebien), [Théo Crevon](https://github.com/oleiade), [Oleg Bespalov](https://github.com/olegbespalov), [
|
|
15
|
+
These definitions were written by [Mihail Stoykov](https://github.com/MStoykov), [Ivan](https://github.com/codebien), [Théo Crevon](https://github.com/oleiade), [Oleg Bespalov](https://github.com/olegbespalov), [Nicole van der Hoeven](https://github.com/nicolevanderhoeven), [Ankur Agarwal](https://github.com/ankur22), [İnanç Gümüş](https://github.com/inancgumus), [Daniel Jiménez](https://github.com/ka3de), and [Joan López de la Franca Beltran](https://github.com/joanlopez).
|
k6/experimental/redis.d.ts
CHANGED
|
@@ -238,7 +238,7 @@ export class Client {
|
|
|
238
238
|
* @param values - values to prepend to the list
|
|
239
239
|
* @returns a promise that resolves to the number of elements in the list after the prepend operation.
|
|
240
240
|
*/
|
|
241
|
-
|
|
241
|
+
lpush(key: string, ...values: Array<string | number | boolean>): Promise<number>;
|
|
242
242
|
|
|
243
243
|
/**
|
|
244
244
|
* Appends values to a list, creating the list if it does not already exist.
|
k6/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/k6",
|
|
3
|
-
"version": "0.49.
|
|
3
|
+
"version": "0.49.3",
|
|
4
4
|
"description": "TypeScript definitions for k6",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/k6",
|
|
6
6
|
"license": "MIT",
|
|
@@ -25,11 +25,6 @@
|
|
|
25
25
|
"githubUsername": "olegbespalov",
|
|
26
26
|
"url": "https://github.com/olegbespalov"
|
|
27
27
|
},
|
|
28
|
-
{
|
|
29
|
-
"name": "Pepe Cano",
|
|
30
|
-
"githubUsername": "ppcano",
|
|
31
|
-
"url": "https://github.com/ppcano"
|
|
32
|
-
},
|
|
33
28
|
{
|
|
34
29
|
"name": "Nicole van der Hoeven",
|
|
35
30
|
"githubUsername": "nicolevanderhoeven",
|
|
@@ -65,6 +60,6 @@
|
|
|
65
60
|
},
|
|
66
61
|
"scripts": {},
|
|
67
62
|
"dependencies": {},
|
|
68
|
-
"typesPublisherContentHash": "
|
|
69
|
-
"typeScriptVersion": "4.
|
|
63
|
+
"typesPublisherContentHash": "eaa5e69f20d37937316cec29094022e50b7e7e7ebdac94b53e0c32540754bec4",
|
|
64
|
+
"typeScriptVersion": "4.7"
|
|
70
65
|
}
|