@types/k6 1.0.0 → 1.0.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.
Files changed (3) hide show
  1. k6/README.md +1 -1
  2. k6/package.json +2 -2
  3. k6/secrets/index.d.ts +3 -3
k6/README.md CHANGED
@@ -8,7 +8,7 @@ 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: Fri, 21 Mar 2025 15:02:26 GMT
12
12
  * Dependencies: none
13
13
 
14
14
  # Credits
k6/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/k6",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "TypeScript definitions for k6",
5
5
  "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/k6",
6
6
  "license": "MIT",
@@ -75,6 +75,6 @@
75
75
  "scripts": {},
76
76
  "dependencies": {},
77
77
  "peerDependencies": {},
78
- "typesPublisherContentHash": "58c97ff8e44e2c27110a210bdb48e95b60da0774d7f2d40e07084a3dc51e7fbd",
78
+ "typesPublisherContentHash": "9f5411572d3744e42a9ac0c81a54e13a8b65cf46c29f512cd7b83a5346e13533",
79
79
  "typeScriptVersion": "5.0"
80
80
  }
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;