@types/k6 0.47.3 → 0.48.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/README.md +3 -3
- k6/crypto.d.ts +28 -28
- k6/data.d.ts +3 -3
- k6/encoding.d.ts +7 -7
- k6/execution.d.ts +2 -2
- k6/experimental/browser.d.ts +131 -21
- k6/experimental/fs.d.ts +102 -0
- k6/experimental/grpc.d.ts +2 -2
- k6/experimental/redis.d.ts +298 -90
- k6/experimental/tracing.d.ts +3 -3
- k6/experimental/webcrypto.d.ts +1 -1
- k6/experimental/websockets.d.ts +13 -13
- k6/global.d.ts +5 -5
- k6/html.d.ts +99 -99
- k6/http.d.ts +42 -42
- k6/index.d.ts +7 -6
- k6/metrics.d.ts +5 -5
- k6/net/grpc.d.ts +2 -2
- k6/options.d.ts +16 -16
- k6/package.json +8 -3
- k6/ws.d.ts +12 -12
k6/experimental/grpc.d.ts
CHANGED
|
@@ -97,12 +97,12 @@ export interface GrpcError {
|
|
|
97
97
|
|
|
98
98
|
/**
|
|
99
99
|
* This module provides classes for Remote Procedure Calls over HTTP/2.
|
|
100
|
-
* https://
|
|
100
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-experimental/grpc/
|
|
101
101
|
*/
|
|
102
102
|
declare namespace grpc {
|
|
103
103
|
/**
|
|
104
104
|
* gRPC client to interact with a gRPC server.
|
|
105
|
-
* https://
|
|
105
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-experimental/grpc/client/
|
|
106
106
|
*/
|
|
107
107
|
class Client {
|
|
108
108
|
protected __brand: never;
|