@types/k6 1.0.0 → 1.0.2

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.
Files changed (3) hide show
  1. k6/README.md +2 -2
  2. k6/package.json +2 -7
  3. k6/secrets/index.d.ts +3 -3
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: Fri, 21 Mar 2025 14:35:17 GMT
11
+ * Last updated: Wed, 26 Mar 2025 12:03:04 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), [Ankur Agarwal](https://github.com/ankur22), [İnanç Gümüş](https://github.com/inancgumus), and [Joan López de la Franca Beltran](https://github.com/joanlopez).
15
+ These definitions were written by [Mihail Stoykov](https://github.com/MStoykov), [Ivan](https://github.com/codebien), [Théo Crevon](https://github.com/oleiade), [Ankur Agarwal](https://github.com/ankur22), [İnanç Gümüş](https://github.com/inancgumus), and [Joan López de la Franca Beltran](https://github.com/joanlopez).
k6/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/k6",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "TypeScript definitions for k6",
5
5
  "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/k6",
6
6
  "license": "MIT",
@@ -20,11 +20,6 @@
20
20
  "githubUsername": "oleiade",
21
21
  "url": "https://github.com/oleiade"
22
22
  },
23
- {
24
- "name": "Oleg Bespalov",
25
- "githubUsername": "olegbespalov",
26
- "url": "https://github.com/olegbespalov"
27
- },
28
23
  {
29
24
  "name": "Ankur Agarwal",
30
25
  "githubUsername": "ankur22",
@@ -75,6 +70,6 @@
75
70
  "scripts": {},
76
71
  "dependencies": {},
77
72
  "peerDependencies": {},
78
- "typesPublisherContentHash": "58c97ff8e44e2c27110a210bdb48e95b60da0774d7f2d40e07084a3dc51e7fbd",
73
+ "typesPublisherContentHash": "045993e4d1c36f697246c0e423cfa9e945a92ed258845d5a09fc31aaca20c23c",
79
74
  "typeScriptVersion": "5.0"
80
75
  }
k6/secrets/index.d.ts CHANGED
@@ -29,8 +29,8 @@ declare function get(key: string): Promise<string>;
29
29
  declare function source(name: string): SecretSource;
30
30
 
31
31
  declare const _default: {
32
- "get": typeof get,
33
- "source": typeof source,
34
- }
32
+ "get": typeof get;
33
+ "source": typeof source;
34
+ };
35
35
 
36
36
  export default _default;