@types/k6 0.43.0 → 0.43.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/experimental/timers.d.ts +1 -1
  3. k6/package.json +2 -2
k6/README.md CHANGED
@@ -8,7 +8,7 @@ This package contains type definitions for k6 (https://k6.io/docs/).
8
8
  Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/k6.
9
9
 
10
10
  ### Additional Details
11
- * Last updated: Mon, 20 Feb 2023 16:02:34 GMT
11
+ * Last updated: Mon, 06 Mar 2023 08:32:30 GMT
12
12
  * Dependencies: none
13
13
  * Global values: none
14
14
 
@@ -27,7 +27,7 @@ export function clearTimeout(timeoutID: TimeoutID): void;
27
27
  * @param args - The arguments to be passed to the function.
28
28
  * @returns The interval id.
29
29
  */
30
- export function setInterval(functionRef: (...args: any[]) => void, delay: number, ...args: any[]): void;
30
+ export function setInterval(functionRef: (...args: any[]) => void, delay: number, ...args: any[]): IntervalID;
31
31
 
32
32
  /**
33
33
  * Cancels a interval previously set with setInterval().
k6/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/k6",
3
- "version": "0.43.0",
3
+ "version": "0.43.1",
4
4
  "description": "TypeScript definitions for k6",
5
5
  "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/k6",
6
6
  "license": "MIT",
@@ -55,6 +55,6 @@
55
55
  },
56
56
  "scripts": {},
57
57
  "dependencies": {},
58
- "typesPublisherContentHash": "9a5f8c5ed0a28eaa972298a4b9dbd230251a9bde3528c3f1531dfad264024ad0",
58
+ "typesPublisherContentHash": "f70eecac5092144abe4576a222261e4596c7d6a912ab5e46c8413fdde6a0a7d4",
59
59
  "typeScriptVersion": "4.2"
60
60
  }