@types/k6 0.51.1 → 0.53.0

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/crypto.d.ts CHANGED
@@ -1,5 +1,3 @@
1
- import { bytes } from ".";
2
-
3
1
  /**
4
2
  * Generate random bytes.
5
3
  * @param size - Number of bytes to generate.
@@ -181,7 +179,7 @@ export type OutputEncoding = StringEncoding | BinaryEncoding;
181
179
  * @template OE - Output encoding.
182
180
  */
183
181
  export type Output<OE extends OutputEncoding> = OE extends StringEncoding ? string
184
- : OE extends BinaryEncoding ? bytes
182
+ : OE extends BinaryEncoding ? ArrayBuffer
185
183
  : never;
186
184
 
187
185
  /**