@gatling.io/jvm-types 3.14.400 → 3.14.600
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.
- package/gatling.d.ts +503 -0
- package/index.d.ts +120 -0
- package/index.js +29 -4
- package/package.json +2 -2
package/gatling.d.ts
CHANGED
|
@@ -56,6 +56,120 @@ declare namespace Java {
|
|
|
56
56
|
// Generated declarations
|
|
57
57
|
//
|
|
58
58
|
|
|
59
|
+
declare namespace com.google.protobuf {
|
|
60
|
+
class Descriptors$Descriptor /* extends Descriptors$GenericDescriptor*/ {
|
|
61
|
+
equals(arg0: any /*java.lang.Object*/): boolean;
|
|
62
|
+
findEnumTypeByName(name: string): any /*com.google.protobuf.Descriptors$EnumDescriptor*/;
|
|
63
|
+
findFieldByName(name: string): any /*com.google.protobuf.Descriptors$FieldDescriptor*/;
|
|
64
|
+
findFieldByNumber(number: int): any /*com.google.protobuf.Descriptors$FieldDescriptor*/;
|
|
65
|
+
findNestedTypeByName(name: string): Descriptors$Descriptor;
|
|
66
|
+
getContainingType(): Descriptors$Descriptor;
|
|
67
|
+
getEnumTypes(): java.util.List<any /*com.google.protobuf.Descriptors$EnumDescriptor*/>;
|
|
68
|
+
getExtensions(): java.util.List<any /*com.google.protobuf.Descriptors$FieldDescriptor*/>;
|
|
69
|
+
getFields(): java.util.List<any /*com.google.protobuf.Descriptors$FieldDescriptor*/>;
|
|
70
|
+
getFile(): any /*com.google.protobuf.Descriptors$FileDescriptor*/;
|
|
71
|
+
getFullName(): string;
|
|
72
|
+
getIndex(): int;
|
|
73
|
+
getName(): string;
|
|
74
|
+
getNestedTypes(): java.util.List<Descriptors$Descriptor>;
|
|
75
|
+
getOneofs(): java.util.List<any /*com.google.protobuf.Descriptors$OneofDescriptor*/>;
|
|
76
|
+
getOptions(): any /*com.google.protobuf.DescriptorProtos$MessageOptions*/;
|
|
77
|
+
getRealOneofs(): java.util.List<any /*com.google.protobuf.Descriptors$OneofDescriptor*/>;
|
|
78
|
+
isExtendable(): boolean;
|
|
79
|
+
isExtensionNumber(number: int): boolean;
|
|
80
|
+
isReservedName(name: string): boolean;
|
|
81
|
+
isReservedNumber(number: int): boolean;
|
|
82
|
+
toProto(): any /*com.google.protobuf.DescriptorProtos$DescriptorProto*/;
|
|
83
|
+
toString(): string;
|
|
84
|
+
} // end Descriptors$Descriptor
|
|
85
|
+
} // end namespace com.google.protobuf
|
|
86
|
+
declare namespace com.google.protobuf {
|
|
87
|
+
class DynamicMessage$Builder /* extends AbstractMessage$Builder<any>*/ {
|
|
88
|
+
addRepeatedField(
|
|
89
|
+
field: any /*com.google.protobuf.Descriptors$FieldDescriptor*/,
|
|
90
|
+
value: any /*java.lang.Object*/
|
|
91
|
+
): DynamicMessage$Builder;
|
|
92
|
+
build(): any /*com.google.protobuf.DynamicMessage*/;
|
|
93
|
+
buildPartial(): any /*com.google.protobuf.DynamicMessage*/;
|
|
94
|
+
clear(): DynamicMessage$Builder;
|
|
95
|
+
clearField(field: any /*com.google.protobuf.Descriptors$FieldDescriptor*/): DynamicMessage$Builder;
|
|
96
|
+
clearOneof(oneof: any /*com.google.protobuf.Descriptors$OneofDescriptor*/): DynamicMessage$Builder;
|
|
97
|
+
clone(): DynamicMessage$Builder;
|
|
98
|
+
equals(arg0: any /*java.lang.Object*/): boolean;
|
|
99
|
+
findInitializationErrors(): java.util.List<string>;
|
|
100
|
+
getAllFields(): java.util.Map<any /*com.google.protobuf.Descriptors$FieldDescriptor*/, any /*java.lang.Object*/>;
|
|
101
|
+
getDefaultInstanceForType(): any /*com.google.protobuf.DynamicMessage*/;
|
|
102
|
+
getDescriptorForType(): Descriptors$Descriptor;
|
|
103
|
+
getField(field: any /*com.google.protobuf.Descriptors$FieldDescriptor*/): any /*java.lang.Object*/;
|
|
104
|
+
getFieldBuilder(
|
|
105
|
+
field: any /*com.google.protobuf.Descriptors$FieldDescriptor*/
|
|
106
|
+
): any /*com.google.protobuf.Message$Builder*/;
|
|
107
|
+
getInitializationErrorString(): string;
|
|
108
|
+
getOneofFieldDescriptor(
|
|
109
|
+
oneof: any /*com.google.protobuf.Descriptors$OneofDescriptor*/
|
|
110
|
+
): any /*com.google.protobuf.Descriptors$FieldDescriptor*/;
|
|
111
|
+
getRepeatedField(
|
|
112
|
+
field: any /*com.google.protobuf.Descriptors$FieldDescriptor*/,
|
|
113
|
+
index: int
|
|
114
|
+
): any /*java.lang.Object*/;
|
|
115
|
+
getRepeatedFieldBuilder(
|
|
116
|
+
field: any /*com.google.protobuf.Descriptors$FieldDescriptor*/,
|
|
117
|
+
index: int
|
|
118
|
+
): any /*com.google.protobuf.Message$Builder*/;
|
|
119
|
+
getRepeatedFieldCount(field: any /*com.google.protobuf.Descriptors$FieldDescriptor*/): int;
|
|
120
|
+
getUnknownFields(): any /*com.google.protobuf.UnknownFieldSet*/;
|
|
121
|
+
hasField(field: any /*com.google.protobuf.Descriptors$FieldDescriptor*/): boolean;
|
|
122
|
+
hasOneof(oneof: any /*com.google.protobuf.Descriptors$OneofDescriptor*/): boolean;
|
|
123
|
+
isInitialized(): boolean;
|
|
124
|
+
mergeDelimitedFrom(input: any /*java.io.InputStream*/): boolean;
|
|
125
|
+
mergeDelimitedFrom(
|
|
126
|
+
input: any /*java.io.InputStream*/,
|
|
127
|
+
extensionRegistry: any /*com.google.protobuf.ExtensionRegistryLite*/
|
|
128
|
+
): boolean;
|
|
129
|
+
mergeFrom(other: any /*com.google.protobuf.Message*/): DynamicMessage$Builder;
|
|
130
|
+
mergeFrom<BuilderType>(data: any /*com.google.protobuf.ByteString*/): BuilderType;
|
|
131
|
+
mergeFrom<BuilderType>(
|
|
132
|
+
data: any /*com.google.protobuf.ByteString*/,
|
|
133
|
+
extensionRegistry: any /*com.google.protobuf.ExtensionRegistryLite*/
|
|
134
|
+
): BuilderType;
|
|
135
|
+
mergeFrom<BuilderType>(data: bytearray): BuilderType;
|
|
136
|
+
mergeFrom<BuilderType>(
|
|
137
|
+
data: bytearray,
|
|
138
|
+
extensionRegistry: any /*com.google.protobuf.ExtensionRegistryLite*/
|
|
139
|
+
): BuilderType;
|
|
140
|
+
mergeFrom<BuilderType>(data: bytearray, off: int, len: int): BuilderType;
|
|
141
|
+
mergeFrom<BuilderType>(
|
|
142
|
+
data: bytearray,
|
|
143
|
+
off: int,
|
|
144
|
+
len: int,
|
|
145
|
+
extensionRegistry: any /*com.google.protobuf.ExtensionRegistryLite*/
|
|
146
|
+
): BuilderType;
|
|
147
|
+
mergeFrom<BuilderType>(input: any /*com.google.protobuf.CodedInputStream*/): BuilderType;
|
|
148
|
+
mergeFrom<BuilderType>(
|
|
149
|
+
input: any /*com.google.protobuf.CodedInputStream*/,
|
|
150
|
+
extensionRegistry: any /*com.google.protobuf.ExtensionRegistryLite*/
|
|
151
|
+
): BuilderType;
|
|
152
|
+
mergeFrom<BuilderType>(input: any /*java.io.InputStream*/): BuilderType;
|
|
153
|
+
mergeFrom<BuilderType>(
|
|
154
|
+
input: any /*java.io.InputStream*/,
|
|
155
|
+
extensionRegistry: any /*com.google.protobuf.ExtensionRegistryLite*/
|
|
156
|
+
): BuilderType;
|
|
157
|
+
mergeFrom<BuilderType>(other: any /*com.google.protobuf.MessageLite*/): BuilderType;
|
|
158
|
+
mergeUnknownFields(unknownFields: any /*com.google.protobuf.UnknownFieldSet*/): DynamicMessage$Builder;
|
|
159
|
+
newBuilderForField(field: any /*com.google.protobuf.Descriptors$FieldDescriptor*/): DynamicMessage$Builder;
|
|
160
|
+
setField(
|
|
161
|
+
field: any /*com.google.protobuf.Descriptors$FieldDescriptor*/,
|
|
162
|
+
value: any /*java.lang.Object*/
|
|
163
|
+
): DynamicMessage$Builder;
|
|
164
|
+
setRepeatedField(
|
|
165
|
+
field: any /*com.google.protobuf.Descriptors$FieldDescriptor*/,
|
|
166
|
+
index: int,
|
|
167
|
+
value: any /*java.lang.Object*/
|
|
168
|
+
): DynamicMessage$Builder;
|
|
169
|
+
setUnknownFields(unknownFields: any /*com.google.protobuf.UnknownFieldSet*/): DynamicMessage$Builder;
|
|
170
|
+
toString(): string;
|
|
171
|
+
} // end DynamicMessage$Builder
|
|
172
|
+
} // end namespace com.google.protobuf
|
|
59
173
|
declare namespace io.gatling.http.client {
|
|
60
174
|
class Request /* extends java.lang.Object*/ {
|
|
61
175
|
copyWithCopiedHeaders(): Request;
|
|
@@ -2921,6 +3035,308 @@ declare namespace io.gatling.javaapi.core.pause {
|
|
|
2921
3035
|
rendezVous(arg0: int): T;
|
|
2922
3036
|
} // end RendezVous
|
|
2923
3037
|
} // end namespace io.gatling.javaapi.core.pause
|
|
3038
|
+
declare namespace io.gatling.javaapi.grpc {
|
|
3039
|
+
/* enum */ class GrpcDsl$MessageResponseTimePolicy /* extends java.lang.Enum<any>*/ {
|
|
3040
|
+
// FromStreamStart:GrpcDsl$MessageResponseTimePolicy;
|
|
3041
|
+
// FromLastMessageSent:GrpcDsl$MessageResponseTimePolicy;
|
|
3042
|
+
// FromLastMessageReceived:GrpcDsl$MessageResponseTimePolicy;
|
|
3043
|
+
|
|
3044
|
+
compareTo<E>(arg0: E): int;
|
|
3045
|
+
describeConstable(): java.util.Optional<any /*java.lang.Enum$EnumDesc*/>;
|
|
3046
|
+
equals(arg0: any /*java.lang.Object*/): boolean;
|
|
3047
|
+
getDeclaringClass<E>(): java.lang.Class<E>;
|
|
3048
|
+
name(): string;
|
|
3049
|
+
ordinal(): int;
|
|
3050
|
+
toString(): string;
|
|
3051
|
+
} // end GrpcDsl$MessageResponseTimePolicy
|
|
3052
|
+
} // end namespace io.gatling.javaapi.grpc
|
|
3053
|
+
declare namespace io.gatling.javaapi.grpc {
|
|
3054
|
+
class Grpc /* extends java.lang.Object*/ {
|
|
3055
|
+
bidiStream<ReqT, RespT>(
|
|
3056
|
+
arg0: any /*io.grpc.MethodDescriptor*/
|
|
3057
|
+
): GrpcBidirectionalStreamingServiceBuilder<ReqT, RespT>;
|
|
3058
|
+
bidiStream<ReqT, RespT>(
|
|
3059
|
+
arg0: any /*io.grpc.MethodDescriptor*/,
|
|
3060
|
+
arg1: string
|
|
3061
|
+
): GrpcBidirectionalStreamingServiceBuilder<ReqT, RespT>;
|
|
3062
|
+
clientStream<ReqT, RespT>(arg0: any /*io.grpc.MethodDescriptor*/): GrpcClientStreamingServiceBuilder<ReqT, RespT>;
|
|
3063
|
+
clientStream<ReqT, RespT>(
|
|
3064
|
+
arg0: any /*io.grpc.MethodDescriptor*/,
|
|
3065
|
+
arg1: string
|
|
3066
|
+
): GrpcClientStreamingServiceBuilder<ReqT, RespT>;
|
|
3067
|
+
equals(arg0: any /*java.lang.Object*/): boolean;
|
|
3068
|
+
serverStream<ReqT, RespT>(arg0: any /*io.grpc.MethodDescriptor*/): GrpcServerStreamingServiceBuilder<ReqT, RespT>;
|
|
3069
|
+
serverStream<ReqT, RespT>(
|
|
3070
|
+
arg0: any /*io.grpc.MethodDescriptor*/,
|
|
3071
|
+
arg1: string
|
|
3072
|
+
): GrpcServerStreamingServiceBuilder<ReqT, RespT>;
|
|
3073
|
+
toString(): string;
|
|
3074
|
+
unary<ReqT, RespT>(arg0: any /*io.grpc.MethodDescriptor*/): GrpcUnaryServiceBuilder<ReqT, RespT>;
|
|
3075
|
+
} // end Grpc
|
|
3076
|
+
} // end namespace io.gatling.javaapi.grpc
|
|
3077
|
+
declare namespace io.gatling.javaapi.grpc {
|
|
3078
|
+
class GrpcBidiStreamAwaitStreamEndActionBuilder<
|
|
3079
|
+
ReqT,
|
|
3080
|
+
RespT
|
|
3081
|
+
> /* extends java.lang.Object implements io.gatling.javaapi.core.ActionBuilder*/ {
|
|
3082
|
+
asScala(): any /*io.gatling.core.action.builder.ActionBuilder*/;
|
|
3083
|
+
equals(arg0: any /*java.lang.Object*/): boolean;
|
|
3084
|
+
toChainBuilder(): io.gatling.javaapi.core.ChainBuilder;
|
|
3085
|
+
toString(): string;
|
|
3086
|
+
} // end GrpcBidiStreamAwaitStreamEndActionBuilder
|
|
3087
|
+
} // end namespace io.gatling.javaapi.grpc
|
|
3088
|
+
declare namespace io.gatling.javaapi.grpc {
|
|
3089
|
+
class GrpcBidirectionalStreamingServiceBuilder<
|
|
3090
|
+
ReqT,
|
|
3091
|
+
RespT
|
|
3092
|
+
> /* extends java.lang.Object implements GrpcHeaders<ReqT, RespT>*/ {
|
|
3093
|
+
asciiHeader<B>(arg0: string): GrpcHeaders$Value<B, string>;
|
|
3094
|
+
asciiHeaders<B>(arg0: java.util.Map<string, string>): B;
|
|
3095
|
+
awaitStreamEnd(): GrpcBidiStreamAwaitStreamEndActionBuilder<ReqT, RespT>;
|
|
3096
|
+
awaitStreamEnd(
|
|
3097
|
+
arg0: BiFunction<
|
|
3098
|
+
io.gatling.javaapi.core.Session,
|
|
3099
|
+
io.gatling.javaapi.core.Session,
|
|
3100
|
+
io.gatling.javaapi.core.Session
|
|
3101
|
+
>
|
|
3102
|
+
): GrpcBidiStreamAwaitStreamEndActionBuilder<ReqT, RespT>;
|
|
3103
|
+
binaryHeader<B>(arg0: string): GrpcHeaders$Value<B, bytearray>;
|
|
3104
|
+
binaryHeaders<B>(arg0: java.util.Map<string, bytearray>): B;
|
|
3105
|
+
callCredentials(
|
|
3106
|
+
arg0: Func<io.gatling.javaapi.core.Session, io.grpc.CallCredentials>
|
|
3107
|
+
): GrpcBidirectionalStreamingServiceBuilder<ReqT, RespT>;
|
|
3108
|
+
callCredentials(arg0: io.grpc.CallCredentials): GrpcBidirectionalStreamingServiceBuilder<ReqT, RespT>;
|
|
3109
|
+
callCredentials(arg0: string): GrpcBidirectionalStreamingServiceBuilder<ReqT, RespT>;
|
|
3110
|
+
cancel(): io.gatling.javaapi.core.ActionBuilder;
|
|
3111
|
+
check(...arg0: io.gatling.javaapi.core.CheckBuilder[]): GrpcBidirectionalStreamingServiceBuilder<ReqT, RespT>;
|
|
3112
|
+
check(
|
|
3113
|
+
arg0: java.util.List<io.gatling.javaapi.core.CheckBuilder>
|
|
3114
|
+
): GrpcBidirectionalStreamingServiceBuilder<ReqT, RespT>;
|
|
3115
|
+
deadlineAfter(arg0: java.time.Duration): GrpcBidirectionalStreamingServiceBuilder<ReqT, RespT>;
|
|
3116
|
+
deadlineAfter(arg0: long): GrpcBidirectionalStreamingServiceBuilder<ReqT, RespT>;
|
|
3117
|
+
equals(arg0: any /*java.lang.Object*/): boolean;
|
|
3118
|
+
halfClose(): io.gatling.javaapi.core.ActionBuilder;
|
|
3119
|
+
header<B, T>(arg0: io.grpc.Metadata$Key<T>): GrpcHeaders$Value<B, T>;
|
|
3120
|
+
messageRequestName(
|
|
3121
|
+
arg0: Func<io.gatling.javaapi.core.Session, string>
|
|
3122
|
+
): GrpcBidirectionalStreamingServiceBuilder<ReqT, RespT>;
|
|
3123
|
+
messageRequestName(arg0: string): GrpcBidirectionalStreamingServiceBuilder<ReqT, RespT>;
|
|
3124
|
+
messageResponseTimePolicy(
|
|
3125
|
+
arg0: GrpcDsl$MessageResponseTimePolicy
|
|
3126
|
+
): GrpcBidirectionalStreamingServiceBuilder<ReqT, RespT>;
|
|
3127
|
+
send(arg0: Func<io.gatling.javaapi.core.Session, ReqT>): io.gatling.javaapi.core.ActionBuilder;
|
|
3128
|
+
send(arg0: ReqT): io.gatling.javaapi.core.ActionBuilder;
|
|
3129
|
+
start(): io.gatling.javaapi.core.ActionBuilder;
|
|
3130
|
+
streamName(arg0: string): GrpcBidirectionalStreamingServiceBuilder<ReqT, RespT>;
|
|
3131
|
+
toString(): string;
|
|
3132
|
+
} // end GrpcBidirectionalStreamingServiceBuilder
|
|
3133
|
+
} // end namespace io.gatling.javaapi.grpc
|
|
3134
|
+
declare namespace io.gatling.javaapi.grpc {
|
|
3135
|
+
class GrpcClientStreamAwaitStreamEndActionBuilder<
|
|
3136
|
+
ReqT,
|
|
3137
|
+
RespT
|
|
3138
|
+
> /* extends java.lang.Object implements io.gatling.javaapi.core.ActionBuilder*/ {
|
|
3139
|
+
asScala(): any /*io.gatling.core.action.builder.ActionBuilder*/;
|
|
3140
|
+
equals(arg0: any /*java.lang.Object*/): boolean;
|
|
3141
|
+
toChainBuilder(): io.gatling.javaapi.core.ChainBuilder;
|
|
3142
|
+
toString(): string;
|
|
3143
|
+
} // end GrpcClientStreamAwaitStreamEndActionBuilder
|
|
3144
|
+
} // end namespace io.gatling.javaapi.grpc
|
|
3145
|
+
declare namespace io.gatling.javaapi.grpc {
|
|
3146
|
+
class GrpcClientStreamingServiceBuilder<
|
|
3147
|
+
ReqT,
|
|
3148
|
+
RespT
|
|
3149
|
+
> /* extends java.lang.Object implements GrpcHeaders<ReqT, RespT>*/ {
|
|
3150
|
+
asciiHeader<B>(arg0: string): GrpcHeaders$Value<B, string>;
|
|
3151
|
+
asciiHeaders<B>(arg0: java.util.Map<string, string>): B;
|
|
3152
|
+
awaitStreamEnd(): GrpcClientStreamAwaitStreamEndActionBuilder<ReqT, RespT>;
|
|
3153
|
+
awaitStreamEnd(
|
|
3154
|
+
arg0: BiFunction<
|
|
3155
|
+
io.gatling.javaapi.core.Session,
|
|
3156
|
+
io.gatling.javaapi.core.Session,
|
|
3157
|
+
io.gatling.javaapi.core.Session
|
|
3158
|
+
>
|
|
3159
|
+
): GrpcClientStreamAwaitStreamEndActionBuilder<ReqT, RespT>;
|
|
3160
|
+
binaryHeader<B>(arg0: string): GrpcHeaders$Value<B, bytearray>;
|
|
3161
|
+
binaryHeaders<B>(arg0: java.util.Map<string, bytearray>): B;
|
|
3162
|
+
callCredentials(
|
|
3163
|
+
arg0: Func<io.gatling.javaapi.core.Session, io.grpc.CallCredentials>
|
|
3164
|
+
): GrpcClientStreamingServiceBuilder<ReqT, RespT>;
|
|
3165
|
+
callCredentials(arg0: io.grpc.CallCredentials): GrpcClientStreamingServiceBuilder<ReqT, RespT>;
|
|
3166
|
+
callCredentials(arg0: string): GrpcClientStreamingServiceBuilder<ReqT, RespT>;
|
|
3167
|
+
cancel(): io.gatling.javaapi.core.ActionBuilder;
|
|
3168
|
+
check(...arg0: io.gatling.javaapi.core.CheckBuilder[]): GrpcClientStreamingServiceBuilder<ReqT, RespT>;
|
|
3169
|
+
check(arg0: java.util.List<io.gatling.javaapi.core.CheckBuilder>): GrpcClientStreamingServiceBuilder<ReqT, RespT>;
|
|
3170
|
+
deadlineAfter(arg0: java.time.Duration): GrpcClientStreamingServiceBuilder<ReqT, RespT>;
|
|
3171
|
+
deadlineAfter(arg0: long): GrpcClientStreamingServiceBuilder<ReqT, RespT>;
|
|
3172
|
+
equals(arg0: any /*java.lang.Object*/): boolean;
|
|
3173
|
+
halfClose(): io.gatling.javaapi.core.ActionBuilder;
|
|
3174
|
+
header<B, T>(arg0: io.grpc.Metadata$Key<T>): GrpcHeaders$Value<B, T>;
|
|
3175
|
+
messageRequestName(
|
|
3176
|
+
arg0: Func<io.gatling.javaapi.core.Session, string>
|
|
3177
|
+
): GrpcClientStreamingServiceBuilder<ReqT, RespT>;
|
|
3178
|
+
messageRequestName(arg0: string): GrpcClientStreamingServiceBuilder<ReqT, RespT>;
|
|
3179
|
+
messageResponseTimePolicy(arg0: GrpcDsl$MessageResponseTimePolicy): GrpcClientStreamingServiceBuilder<ReqT, RespT>;
|
|
3180
|
+
send(arg0: Func<io.gatling.javaapi.core.Session, ReqT>): io.gatling.javaapi.core.ActionBuilder;
|
|
3181
|
+
send(arg0: ReqT): io.gatling.javaapi.core.ActionBuilder;
|
|
3182
|
+
start(): io.gatling.javaapi.core.ActionBuilder;
|
|
3183
|
+
streamName(arg0: string): GrpcClientStreamingServiceBuilder<ReqT, RespT>;
|
|
3184
|
+
toString(): string;
|
|
3185
|
+
} // end GrpcClientStreamingServiceBuilder
|
|
3186
|
+
} // end namespace io.gatling.javaapi.grpc
|
|
3187
|
+
declare namespace io.gatling.javaapi.grpc {
|
|
3188
|
+
class GrpcDsl /* extends java.lang.Object*/ {
|
|
3189
|
+
equals(arg0: any /*java.lang.Object*/): boolean;
|
|
3190
|
+
toString(): string;
|
|
3191
|
+
} // end GrpcDsl
|
|
3192
|
+
} // end namespace io.gatling.javaapi.grpc
|
|
3193
|
+
declare namespace io.gatling.javaapi.grpc {
|
|
3194
|
+
class GrpcHeaders$Value<B, V> /* extends java.lang.Object*/ {
|
|
3195
|
+
equals(arg0: any /*java.lang.Object*/): boolean;
|
|
3196
|
+
toString(): string;
|
|
3197
|
+
value(arg0: Func<io.gatling.javaapi.core.Session, V>): B;
|
|
3198
|
+
value(arg0: V): B;
|
|
3199
|
+
valueEL(arg0: string): B;
|
|
3200
|
+
} // end GrpcHeaders$Value
|
|
3201
|
+
} // end namespace io.gatling.javaapi.grpc
|
|
3202
|
+
declare namespace io.gatling.javaapi.grpc {
|
|
3203
|
+
class GrpcProtocolBuilder /* extends java.lang.Object implements io.gatling.javaapi.core.ProtocolBuilder, GrpcHeaders<any, any>*/ {
|
|
3204
|
+
asciiHeader<B>(arg0: string): GrpcHeaders$Value<B, string>;
|
|
3205
|
+
asciiHeaders<B>(arg0: java.util.Map<string, string>): B;
|
|
3206
|
+
binaryHeader<B>(arg0: string): GrpcHeaders$Value<B, bytearray>;
|
|
3207
|
+
binaryHeaders<B>(arg0: java.util.Map<string, bytearray>): B;
|
|
3208
|
+
callCredentials(arg0: Func<io.gatling.javaapi.core.Session, io.grpc.CallCredentials>): GrpcProtocolBuilder;
|
|
3209
|
+
callCredentials(arg0: io.grpc.CallCredentials): GrpcProtocolBuilder;
|
|
3210
|
+
callCredentials(arg0: string): GrpcProtocolBuilder;
|
|
3211
|
+
channelCredentials(arg0: Func<io.gatling.javaapi.core.Session, io.grpc.ChannelCredentials>): GrpcProtocolBuilder;
|
|
3212
|
+
channelCredentials(arg0: io.grpc.ChannelCredentials): GrpcProtocolBuilder;
|
|
3213
|
+
channelCredentials(arg0: string): GrpcProtocolBuilder;
|
|
3214
|
+
channelCredentialsFromJavaMap(arg0: string): GrpcProtocolBuilder;
|
|
3215
|
+
equals(arg0: any /*java.lang.Object*/): boolean;
|
|
3216
|
+
forAddress(arg0: string, arg1: int): GrpcProtocolBuilder;
|
|
3217
|
+
forTarget(arg0: string): GrpcProtocolBuilder;
|
|
3218
|
+
header<B, T>(arg0: io.grpc.Metadata$Key<T>): GrpcHeaders$Value<B, T>;
|
|
3219
|
+
overrideAuthority(arg0: string): GrpcProtocolBuilder;
|
|
3220
|
+
protocol(): any /*io.gatling.core.protocol.Protocol*/;
|
|
3221
|
+
shareChannel(): GrpcProtocolBuilder;
|
|
3222
|
+
shareSslContext(): GrpcProtocolBuilder;
|
|
3223
|
+
toString(): string;
|
|
3224
|
+
useChannelPool(arg0: int): GrpcProtocolBuilder;
|
|
3225
|
+
useCustomCertificateTrustManager(arg0: string): GrpcProtocolBuilder;
|
|
3226
|
+
useCustomLoadBalancingPolicy(arg0: string): GrpcProtocolBuilder;
|
|
3227
|
+
useCustomLoadBalancingPolicy(arg0: string, arg1: string): GrpcProtocolBuilder;
|
|
3228
|
+
useInsecureTrustManager(): GrpcProtocolBuilder;
|
|
3229
|
+
usePickFirstLoadBalancingPolicy(): GrpcProtocolBuilder;
|
|
3230
|
+
usePickRandomLoadBalancingPolicy(): GrpcProtocolBuilder;
|
|
3231
|
+
usePlaintext(): GrpcProtocolBuilder;
|
|
3232
|
+
useRoundRobinLoadBalancingPolicy(): GrpcProtocolBuilder;
|
|
3233
|
+
useStandardTrustManager(): GrpcProtocolBuilder;
|
|
3234
|
+
} // end GrpcProtocolBuilder
|
|
3235
|
+
} // end namespace io.gatling.javaapi.grpc
|
|
3236
|
+
declare namespace io.gatling.javaapi.grpc {
|
|
3237
|
+
class GrpcServerStreamAwaitStreamEndActionBuilder<
|
|
3238
|
+
ReqT,
|
|
3239
|
+
RespT
|
|
3240
|
+
> /* extends java.lang.Object implements io.gatling.javaapi.core.ActionBuilder*/ {
|
|
3241
|
+
asScala(): any /*io.gatling.core.action.builder.ActionBuilder*/;
|
|
3242
|
+
equals(arg0: any /*java.lang.Object*/): boolean;
|
|
3243
|
+
toChainBuilder(): io.gatling.javaapi.core.ChainBuilder;
|
|
3244
|
+
toString(): string;
|
|
3245
|
+
} // end GrpcServerStreamAwaitStreamEndActionBuilder
|
|
3246
|
+
} // end namespace io.gatling.javaapi.grpc
|
|
3247
|
+
declare namespace io.gatling.javaapi.grpc {
|
|
3248
|
+
class GrpcServerStreamStreamSendActionBuilder<
|
|
3249
|
+
ReqT,
|
|
3250
|
+
RespT
|
|
3251
|
+
> /* extends java.lang.Object implements io.gatling.javaapi.core.ActionBuilder*/ {
|
|
3252
|
+
asScala(): any /*io.gatling.core.action.builder.ActionBuilder*/;
|
|
3253
|
+
equals(arg0: any /*java.lang.Object*/): boolean;
|
|
3254
|
+
toChainBuilder(): io.gatling.javaapi.core.ChainBuilder;
|
|
3255
|
+
toString(): string;
|
|
3256
|
+
} // end GrpcServerStreamStreamSendActionBuilder
|
|
3257
|
+
} // end namespace io.gatling.javaapi.grpc
|
|
3258
|
+
declare namespace io.gatling.javaapi.grpc {
|
|
3259
|
+
class GrpcServerStreamingServiceBuilder<
|
|
3260
|
+
ReqT,
|
|
3261
|
+
RespT
|
|
3262
|
+
> /* extends java.lang.Object implements GrpcHeaders<ReqT, RespT>*/ {
|
|
3263
|
+
asciiHeader<B>(arg0: string): GrpcHeaders$Value<B, string>;
|
|
3264
|
+
asciiHeaders<B>(arg0: java.util.Map<string, string>): B;
|
|
3265
|
+
awaitStreamEnd(): GrpcServerStreamAwaitStreamEndActionBuilder<ReqT, RespT>;
|
|
3266
|
+
awaitStreamEnd(
|
|
3267
|
+
arg0: BiFunction<
|
|
3268
|
+
io.gatling.javaapi.core.Session,
|
|
3269
|
+
io.gatling.javaapi.core.Session,
|
|
3270
|
+
io.gatling.javaapi.core.Session
|
|
3271
|
+
>
|
|
3272
|
+
): GrpcServerStreamAwaitStreamEndActionBuilder<ReqT, RespT>;
|
|
3273
|
+
binaryHeader<B>(arg0: string): GrpcHeaders$Value<B, bytearray>;
|
|
3274
|
+
binaryHeaders<B>(arg0: java.util.Map<string, bytearray>): B;
|
|
3275
|
+
callCredentials(
|
|
3276
|
+
arg0: Func<io.gatling.javaapi.core.Session, io.grpc.CallCredentials>
|
|
3277
|
+
): GrpcServerStreamingServiceBuilder<ReqT, RespT>;
|
|
3278
|
+
callCredentials(arg0: io.grpc.CallCredentials): GrpcServerStreamingServiceBuilder<ReqT, RespT>;
|
|
3279
|
+
callCredentials(arg0: string): GrpcServerStreamingServiceBuilder<ReqT, RespT>;
|
|
3280
|
+
cancel(): io.gatling.javaapi.core.ActionBuilder;
|
|
3281
|
+
check(...arg0: io.gatling.javaapi.core.CheckBuilder[]): GrpcServerStreamingServiceBuilder<ReqT, RespT>;
|
|
3282
|
+
check(arg0: java.util.List<io.gatling.javaapi.core.CheckBuilder>): GrpcServerStreamingServiceBuilder<ReqT, RespT>;
|
|
3283
|
+
deadlineAfter(arg0: java.time.Duration): GrpcServerStreamingServiceBuilder<ReqT, RespT>;
|
|
3284
|
+
deadlineAfter(arg0: long): GrpcServerStreamingServiceBuilder<ReqT, RespT>;
|
|
3285
|
+
equals(arg0: any /*java.lang.Object*/): boolean;
|
|
3286
|
+
header<B, T>(arg0: io.grpc.Metadata$Key<T>): GrpcHeaders$Value<B, T>;
|
|
3287
|
+
messageRequestName(
|
|
3288
|
+
arg0: Func<io.gatling.javaapi.core.Session, string>
|
|
3289
|
+
): GrpcServerStreamingServiceBuilder<ReqT, RespT>;
|
|
3290
|
+
messageRequestName(arg0: string): GrpcServerStreamingServiceBuilder<ReqT, RespT>;
|
|
3291
|
+
messageResponseTimePolicy(arg0: GrpcDsl$MessageResponseTimePolicy): GrpcServerStreamingServiceBuilder<ReqT, RespT>;
|
|
3292
|
+
send(arg0: Func<io.gatling.javaapi.core.Session, ReqT>): GrpcServerStreamStreamSendActionBuilder<ReqT, RespT>;
|
|
3293
|
+
send(arg0: ReqT): GrpcServerStreamStreamSendActionBuilder<ReqT, RespT>;
|
|
3294
|
+
streamName(arg0: string): GrpcServerStreamingServiceBuilder<ReqT, RespT>;
|
|
3295
|
+
toString(): string;
|
|
3296
|
+
} // end GrpcServerStreamingServiceBuilder
|
|
3297
|
+
} // end namespace io.gatling.javaapi.grpc
|
|
3298
|
+
declare namespace io.gatling.javaapi.grpc {
|
|
3299
|
+
class GrpcUnaryActionBuilder<
|
|
3300
|
+
ReqT,
|
|
3301
|
+
RespT
|
|
3302
|
+
> /* extends java.lang.Object implements io.gatling.javaapi.core.ActionBuilder, GrpcHeaders<ReqT, RespT>*/ {
|
|
3303
|
+
asScala(): any /*io.gatling.core.action.builder.ActionBuilder*/;
|
|
3304
|
+
asciiHeader<B>(arg0: string): GrpcHeaders$Value<B, string>;
|
|
3305
|
+
asciiHeaders<B>(arg0: java.util.Map<string, string>): B;
|
|
3306
|
+
binaryHeader<B>(arg0: string): GrpcHeaders$Value<B, bytearray>;
|
|
3307
|
+
binaryHeaders<B>(arg0: java.util.Map<string, bytearray>): B;
|
|
3308
|
+
callCredentials(
|
|
3309
|
+
arg0: Func<io.gatling.javaapi.core.Session, io.grpc.CallCredentials>
|
|
3310
|
+
): GrpcUnaryActionBuilder<ReqT, RespT>;
|
|
3311
|
+
callCredentials(arg0: io.grpc.CallCredentials): GrpcUnaryActionBuilder<ReqT, RespT>;
|
|
3312
|
+
callCredentials(arg0: string): GrpcUnaryActionBuilder<ReqT, RespT>;
|
|
3313
|
+
check(...arg0: io.gatling.javaapi.core.CheckBuilder[]): GrpcUnaryActionBuilder<ReqT, RespT>;
|
|
3314
|
+
check(arg0: java.util.List<io.gatling.javaapi.core.CheckBuilder>): GrpcUnaryActionBuilder<ReqT, RespT>;
|
|
3315
|
+
deadlineAfter(arg0: java.time.Duration): GrpcUnaryActionBuilder<ReqT, RespT>;
|
|
3316
|
+
deadlineAfter(arg0: long): GrpcUnaryActionBuilder<ReqT, RespT>;
|
|
3317
|
+
equals(arg0: any /*java.lang.Object*/): boolean;
|
|
3318
|
+
header<B, T>(arg0: io.grpc.Metadata$Key<T>): GrpcHeaders$Value<B, T>;
|
|
3319
|
+
toChainBuilder(): io.gatling.javaapi.core.ChainBuilder;
|
|
3320
|
+
toString(): string;
|
|
3321
|
+
} // end GrpcUnaryActionBuilder
|
|
3322
|
+
} // end namespace io.gatling.javaapi.grpc
|
|
3323
|
+
declare namespace io.gatling.javaapi.grpc {
|
|
3324
|
+
class GrpcUnaryServiceBuilder<ReqT, RespT> /* extends java.lang.Object*/ {
|
|
3325
|
+
equals(arg0: any /*java.lang.Object*/): boolean;
|
|
3326
|
+
send(arg0: Func<io.gatling.javaapi.core.Session, ReqT>): GrpcUnaryActionBuilder<ReqT, RespT>;
|
|
3327
|
+
send(arg0: ReqT): GrpcUnaryActionBuilder<ReqT, RespT>;
|
|
3328
|
+
toString(): string;
|
|
3329
|
+
} // end GrpcUnaryServiceBuilder
|
|
3330
|
+
} // end namespace io.gatling.javaapi.grpc
|
|
3331
|
+
declare namespace io.gatling.javaapi.grpc {
|
|
3332
|
+
interface GrpcHeaders<B, W> {
|
|
3333
|
+
asciiHeader(arg0: string): GrpcHeaders$Value<B, string>;
|
|
3334
|
+
asciiHeaders(arg0: java.util.Map<string, string>): B;
|
|
3335
|
+
binaryHeader(arg0: string): GrpcHeaders$Value<B, bytearray>;
|
|
3336
|
+
binaryHeaders(arg0: java.util.Map<string, bytearray>): B;
|
|
3337
|
+
header<T>(arg0: io.grpc.Metadata$Key<T>): GrpcHeaders$Value<B, T>;
|
|
3338
|
+
} // end GrpcHeaders
|
|
3339
|
+
} // end namespace io.gatling.javaapi.grpc
|
|
2924
3340
|
declare namespace io.gatling.javaapi.http {
|
|
2925
3341
|
class AddCookie /* extends java.lang.Object*/ {
|
|
2926
3342
|
asScala(): any /*io.gatling.http.action.cookie.AddCookieDsl*/;
|
|
@@ -4200,6 +4616,93 @@ declare namespace io.gatling.mqtt.action {
|
|
|
4200
4616
|
variableHeader(): io.netty.handler.codec.mqtt.MqttPublishVariableHeader;
|
|
4201
4617
|
} // end MqttInboundMessage
|
|
4202
4618
|
} // end namespace io.gatling.mqtt.action
|
|
4619
|
+
declare namespace io.grpc {
|
|
4620
|
+
class CallCredentials /* extends java.lang.Object*/ {
|
|
4621
|
+
applyRequestMetadata(
|
|
4622
|
+
arg0: any /*io.grpc.CallCredentials$RequestInfo*/,
|
|
4623
|
+
arg1: any /*java.util.concurrent.Executor*/,
|
|
4624
|
+
arg2: any /*io.grpc.CallCredentials$MetadataApplier*/
|
|
4625
|
+
): void;
|
|
4626
|
+
equals(arg0: any /*java.lang.Object*/): boolean;
|
|
4627
|
+
thisUsesUnstableApi(): void;
|
|
4628
|
+
toString(): string;
|
|
4629
|
+
} // end CallCredentials
|
|
4630
|
+
} // end namespace io.grpc
|
|
4631
|
+
declare namespace io.grpc {
|
|
4632
|
+
class CallOptions /* extends java.lang.Object*/ {
|
|
4633
|
+
clearOnReadyThreshold(): CallOptions;
|
|
4634
|
+
equals(arg0: any /*java.lang.Object*/): boolean;
|
|
4635
|
+
getAuthority(): string;
|
|
4636
|
+
getCompressor(): string;
|
|
4637
|
+
getCredentials(): CallCredentials;
|
|
4638
|
+
getDeadline(): any /*io.grpc.Deadline*/;
|
|
4639
|
+
getExecutor(): any /*java.util.concurrent.Executor*/;
|
|
4640
|
+
getMaxInboundMessageSize(): int | null;
|
|
4641
|
+
getMaxOutboundMessageSize(): int | null;
|
|
4642
|
+
getOnReadyThreshold(): int | null;
|
|
4643
|
+
getOption<T>(arg0: any /*io.grpc.CallOptions$Key*/): T;
|
|
4644
|
+
getStreamTracerFactories(): java.util.List<any /*io.grpc.ClientStreamTracer$Factory*/>;
|
|
4645
|
+
isWaitForReady(): boolean;
|
|
4646
|
+
toString(): string;
|
|
4647
|
+
withAuthority(arg0: string): CallOptions;
|
|
4648
|
+
withCallCredentials(arg0: CallCredentials): CallOptions;
|
|
4649
|
+
withCompression(arg0: string): CallOptions;
|
|
4650
|
+
withDeadline(arg0: any /*io.grpc.Deadline*/): CallOptions;
|
|
4651
|
+
withDeadlineAfter(arg0: java.time.Duration): CallOptions;
|
|
4652
|
+
withDeadlineAfter(arg0: long, arg1: any /*java.util.concurrent.TimeUnit*/): CallOptions;
|
|
4653
|
+
withExecutor(arg0: any /*java.util.concurrent.Executor*/): CallOptions;
|
|
4654
|
+
withMaxInboundMessageSize(arg0: int): CallOptions;
|
|
4655
|
+
withMaxOutboundMessageSize(arg0: int): CallOptions;
|
|
4656
|
+
withOnReadyThreshold(arg0: int): CallOptions;
|
|
4657
|
+
withOption<T>(arg0: any /*io.grpc.CallOptions$Key*/, arg1: T): CallOptions;
|
|
4658
|
+
withStreamTracerFactory(arg0: any /*io.grpc.ClientStreamTracer$Factory*/): CallOptions;
|
|
4659
|
+
withWaitForReady(): CallOptions;
|
|
4660
|
+
withoutWaitForReady(): CallOptions;
|
|
4661
|
+
} // end CallOptions
|
|
4662
|
+
} // end namespace io.grpc
|
|
4663
|
+
declare namespace io.grpc {
|
|
4664
|
+
class ChannelCredentials /* extends java.lang.Object*/ {
|
|
4665
|
+
equals(arg0: any /*java.lang.Object*/): boolean;
|
|
4666
|
+
toString(): string;
|
|
4667
|
+
withoutBearerTokens(): ChannelCredentials;
|
|
4668
|
+
} // end ChannelCredentials
|
|
4669
|
+
} // end namespace io.grpc
|
|
4670
|
+
declare namespace io.grpc {
|
|
4671
|
+
class Metadata$Key<T> /* extends java.lang.Object*/ {
|
|
4672
|
+
equals(arg0: any /*java.lang.Object*/): boolean;
|
|
4673
|
+
name(): string;
|
|
4674
|
+
originalName(): string;
|
|
4675
|
+
toString(): string;
|
|
4676
|
+
} // end Metadata$Key
|
|
4677
|
+
} // end namespace io.grpc
|
|
4678
|
+
declare namespace io.grpc {
|
|
4679
|
+
class Metadata /* extends java.lang.Object*/ {
|
|
4680
|
+
containsKey(arg0: Metadata$Key<any /*java.lang.Object*/>): boolean;
|
|
4681
|
+
discardAll<T>(arg0: Metadata$Key<T>): void;
|
|
4682
|
+
equals(arg0: any /*java.lang.Object*/): boolean;
|
|
4683
|
+
get<T>(arg0: Metadata$Key<T>): T;
|
|
4684
|
+
getAll<T>(arg0: Metadata$Key<T>): java.lang.Iterable<T>;
|
|
4685
|
+
keys(): java.util.Set<string>;
|
|
4686
|
+
merge(arg0: Metadata): void;
|
|
4687
|
+
merge(arg0: Metadata, arg1: java.util.Set<Metadata$Key<any /*java.lang.Object*/>>): void;
|
|
4688
|
+
put<T>(arg0: Metadata$Key<T>, arg1: T): void;
|
|
4689
|
+
remove<T>(arg0: Metadata$Key<T>, arg1: T): boolean;
|
|
4690
|
+
removeAll<T>(arg0: Metadata$Key<T>): java.lang.Iterable<T>;
|
|
4691
|
+
toString(): string;
|
|
4692
|
+
} // end Metadata
|
|
4693
|
+
} // end namespace io.grpc
|
|
4694
|
+
declare namespace io.grpc {
|
|
4695
|
+
interface Metadata$AsciiMarshaller<T> {
|
|
4696
|
+
parseAsciiString(arg0: string): T;
|
|
4697
|
+
toAsciiString(arg0: T): string;
|
|
4698
|
+
} // end Metadata$AsciiMarshaller
|
|
4699
|
+
} // end namespace io.grpc
|
|
4700
|
+
declare namespace io.grpc {
|
|
4701
|
+
interface Metadata$BinaryMarshaller<T> {
|
|
4702
|
+
parseBytes(arg0: bytearray): T;
|
|
4703
|
+
toBytes(arg0: T): bytearray;
|
|
4704
|
+
} // end Metadata$BinaryMarshaller
|
|
4705
|
+
} // end namespace io.grpc
|
|
4203
4706
|
declare namespace io.netty.handler.codec.http {
|
|
4204
4707
|
class HttpHeaders /* extends java.lang.Object implements java.lang.Iterable<any>*/ {
|
|
4205
4708
|
add(arg0: HttpHeaders): HttpHeaders;
|
package/index.d.ts
CHANGED
|
@@ -71,10 +71,24 @@ interface BodyStatic {
|
|
|
71
71
|
readonly class: any;
|
|
72
72
|
}
|
|
73
73
|
export declare const Body: BodyStatic;
|
|
74
|
+
interface CallCredentialsStatic {
|
|
75
|
+
readonly class: any;
|
|
76
|
+
new (): io.grpc.CallCredentials;
|
|
77
|
+
}
|
|
78
|
+
export declare const CallCredentials: CallCredentialsStatic;
|
|
79
|
+
interface CallOptionsStatic {
|
|
80
|
+
readonly class: any;
|
|
81
|
+
}
|
|
82
|
+
export declare const CallOptions: CallOptionsStatic;
|
|
74
83
|
interface ChainBuilderStatic {
|
|
75
84
|
readonly class: any;
|
|
76
85
|
}
|
|
77
86
|
export declare const ChainBuilder: ChainBuilderStatic;
|
|
87
|
+
interface ChannelCredentialsStatic {
|
|
88
|
+
readonly class: any;
|
|
89
|
+
new (): io.grpc.ChannelCredentials;
|
|
90
|
+
}
|
|
91
|
+
export declare const ChannelCredentials: ChannelCredentialsStatic;
|
|
78
92
|
interface CheckBuilder$CaptureGroupCheckBuilderStatic {
|
|
79
93
|
readonly class: any;
|
|
80
94
|
}
|
|
@@ -526,6 +540,10 @@ interface CoreDslStatic {
|
|
|
526
540
|
registerPebbleExtensions(...arg0: any[]): void;
|
|
527
541
|
}
|
|
528
542
|
export declare const CoreDsl: CoreDslStatic;
|
|
543
|
+
interface Descriptors$DescriptorStatic {
|
|
544
|
+
readonly class: any;
|
|
545
|
+
}
|
|
546
|
+
export declare const Descriptors$Descriptor: Descriptors$DescriptorStatic;
|
|
529
547
|
interface DoIf$ThenStatic {
|
|
530
548
|
readonly class: any;
|
|
531
549
|
}
|
|
@@ -626,6 +644,10 @@ interface DuringStatic {
|
|
|
626
644
|
readonly class: any;
|
|
627
645
|
}
|
|
628
646
|
export declare const During: DuringStatic;
|
|
647
|
+
interface DynamicMessage$BuilderStatic {
|
|
648
|
+
readonly class: any;
|
|
649
|
+
}
|
|
650
|
+
export declare const DynamicMessage$Builder: DynamicMessage$BuilderStatic;
|
|
629
651
|
interface Errors$ExitBlockOnFailStatic {
|
|
630
652
|
readonly class: any;
|
|
631
653
|
}
|
|
@@ -704,6 +726,84 @@ interface GroupsStatic {
|
|
|
704
726
|
readonly class: any;
|
|
705
727
|
}
|
|
706
728
|
export declare const Groups: GroupsStatic;
|
|
729
|
+
interface GrpcBidiStreamAwaitStreamEndActionBuilderStatic {
|
|
730
|
+
readonly class: any;
|
|
731
|
+
}
|
|
732
|
+
export declare const GrpcBidiStreamAwaitStreamEndActionBuilder: GrpcBidiStreamAwaitStreamEndActionBuilderStatic;
|
|
733
|
+
interface GrpcBidirectionalStreamingServiceBuilderStatic {
|
|
734
|
+
readonly class: any;
|
|
735
|
+
}
|
|
736
|
+
export declare const GrpcBidirectionalStreamingServiceBuilder: GrpcBidirectionalStreamingServiceBuilderStatic;
|
|
737
|
+
interface GrpcClientStreamAwaitStreamEndActionBuilderStatic {
|
|
738
|
+
readonly class: any;
|
|
739
|
+
}
|
|
740
|
+
export declare const GrpcClientStreamAwaitStreamEndActionBuilder: GrpcClientStreamAwaitStreamEndActionBuilderStatic;
|
|
741
|
+
interface GrpcClientStreamingServiceBuilderStatic {
|
|
742
|
+
readonly class: any;
|
|
743
|
+
}
|
|
744
|
+
export declare const GrpcClientStreamingServiceBuilder: GrpcClientStreamingServiceBuilderStatic;
|
|
745
|
+
interface GrpcDsl$MessageResponseTimePolicyStatic {
|
|
746
|
+
FromStreamStart: io.gatling.javaapi.grpc.GrpcDsl$MessageResponseTimePolicy;
|
|
747
|
+
FromLastMessageSent: io.gatling.javaapi.grpc.GrpcDsl$MessageResponseTimePolicy;
|
|
748
|
+
FromLastMessageReceived: io.gatling.javaapi.grpc.GrpcDsl$MessageResponseTimePolicy;
|
|
749
|
+
readonly class: any;
|
|
750
|
+
valueOf<T>(arg0: java.lang.Class<T>, arg1: string): T;
|
|
751
|
+
valueOf(arg0: string): io.gatling.javaapi.grpc.GrpcDsl$MessageResponseTimePolicy;
|
|
752
|
+
values(): [io.gatling.javaapi.grpc.GrpcDsl$MessageResponseTimePolicy];
|
|
753
|
+
}
|
|
754
|
+
export declare const GrpcDsl$MessageResponseTimePolicy: GrpcDsl$MessageResponseTimePolicyStatic;
|
|
755
|
+
interface GrpcDslStatic {
|
|
756
|
+
readonly class: any;
|
|
757
|
+
response<X, X2>(arg0: Func<X, X2>): io.gatling.javaapi.core.CheckBuilder$Find<X2>;
|
|
758
|
+
header<X>(arg0: io.grpc.Metadata$Key<X>): io.gatling.javaapi.core.CheckBuilder$MultipleFind<X>;
|
|
759
|
+
trailer<X>(arg0: io.grpc.Metadata$Key<X>): io.gatling.javaapi.core.CheckBuilder$MultipleFind<X>;
|
|
760
|
+
statusDescription(): io.gatling.javaapi.core.CheckBuilder$Find<string>;
|
|
761
|
+
statusCause(): io.gatling.javaapi.core.CheckBuilder$Find<any>;
|
|
762
|
+
binaryHeader(arg0: string): io.gatling.javaapi.core.CheckBuilder$MultipleFind<bytearray>;
|
|
763
|
+
binaryTrailer(arg0: string): io.gatling.javaapi.core.CheckBuilder$MultipleFind<bytearray>;
|
|
764
|
+
asciiHeader(arg0: string): io.gatling.javaapi.core.CheckBuilder$MultipleFind<string>;
|
|
765
|
+
asciiTrailer(arg0: string): io.gatling.javaapi.core.CheckBuilder$MultipleFind<string>;
|
|
766
|
+
grpc(arg0: string): io.gatling.javaapi.grpc.Grpc;
|
|
767
|
+
grpc(arg0: Func<io.gatling.javaapi.core.Session, string>): io.gatling.javaapi.grpc.Grpc;
|
|
768
|
+
statusCode(): any;
|
|
769
|
+
}
|
|
770
|
+
export declare const GrpcDsl: GrpcDslStatic;
|
|
771
|
+
interface GrpcHeaders$ValueStatic {
|
|
772
|
+
readonly class: any;
|
|
773
|
+
}
|
|
774
|
+
export declare const GrpcHeaders$Value: GrpcHeaders$ValueStatic;
|
|
775
|
+
interface GrpcHeadersStatic {
|
|
776
|
+
readonly class: any;
|
|
777
|
+
}
|
|
778
|
+
export declare const GrpcHeaders: GrpcHeadersStatic;
|
|
779
|
+
interface GrpcProtocolBuilderStatic {
|
|
780
|
+
readonly class: any;
|
|
781
|
+
}
|
|
782
|
+
export declare const GrpcProtocolBuilder: GrpcProtocolBuilderStatic;
|
|
783
|
+
interface GrpcServerStreamAwaitStreamEndActionBuilderStatic {
|
|
784
|
+
readonly class: any;
|
|
785
|
+
}
|
|
786
|
+
export declare const GrpcServerStreamAwaitStreamEndActionBuilder: GrpcServerStreamAwaitStreamEndActionBuilderStatic;
|
|
787
|
+
interface GrpcServerStreamStreamSendActionBuilderStatic {
|
|
788
|
+
readonly class: any;
|
|
789
|
+
}
|
|
790
|
+
export declare const GrpcServerStreamStreamSendActionBuilder: GrpcServerStreamStreamSendActionBuilderStatic;
|
|
791
|
+
interface GrpcServerStreamingServiceBuilderStatic {
|
|
792
|
+
readonly class: any;
|
|
793
|
+
}
|
|
794
|
+
export declare const GrpcServerStreamingServiceBuilder: GrpcServerStreamingServiceBuilderStatic;
|
|
795
|
+
interface GrpcStatic {
|
|
796
|
+
readonly class: any;
|
|
797
|
+
}
|
|
798
|
+
export declare const Grpc: GrpcStatic;
|
|
799
|
+
interface GrpcUnaryActionBuilderStatic {
|
|
800
|
+
readonly class: any;
|
|
801
|
+
}
|
|
802
|
+
export declare const GrpcUnaryActionBuilder: GrpcUnaryActionBuilderStatic;
|
|
803
|
+
interface GrpcUnaryServiceBuilderStatic {
|
|
804
|
+
readonly class: any;
|
|
805
|
+
}
|
|
806
|
+
export declare const GrpcUnaryServiceBuilder: GrpcUnaryServiceBuilderStatic;
|
|
707
807
|
interface HttpDslStatic {
|
|
708
808
|
readonly class: any;
|
|
709
809
|
addCookie(arg0: io.gatling.javaapi.http.AddCookie): io.gatling.javaapi.core.ActionBuilder;
|
|
@@ -876,6 +976,26 @@ interface LastWillBuilderStatic {
|
|
|
876
976
|
readonly class: any;
|
|
877
977
|
}
|
|
878
978
|
export declare const LastWillBuilder: LastWillBuilderStatic;
|
|
979
|
+
interface Metadata$AsciiMarshallerStatic {
|
|
980
|
+
readonly class: any;
|
|
981
|
+
}
|
|
982
|
+
export declare const Metadata$AsciiMarshaller: Metadata$AsciiMarshallerStatic;
|
|
983
|
+
interface Metadata$BinaryMarshallerStatic {
|
|
984
|
+
readonly class: any;
|
|
985
|
+
}
|
|
986
|
+
export declare const Metadata$BinaryMarshaller: Metadata$BinaryMarshallerStatic;
|
|
987
|
+
interface Metadata$KeyStatic {
|
|
988
|
+
readonly class: any;
|
|
989
|
+
of<T>(arg0: string, arg1: io.grpc.Metadata$AsciiMarshaller<T>): io.grpc.Metadata$Key<T>;
|
|
990
|
+
of<T>(arg0: string, arg1: io.grpc.Metadata$BinaryMarshaller<T>): io.grpc.Metadata$Key<T>;
|
|
991
|
+
of<T>(arg0: string, arg1: any): io.grpc.Metadata$Key<T>;
|
|
992
|
+
}
|
|
993
|
+
export declare const Metadata$Key: Metadata$KeyStatic;
|
|
994
|
+
interface MetadataStatic {
|
|
995
|
+
readonly class: any;
|
|
996
|
+
new (): io.grpc.Metadata;
|
|
997
|
+
}
|
|
998
|
+
export declare const Metadata: MetadataStatic;
|
|
879
999
|
interface MqttBuilderStatic {
|
|
880
1000
|
readonly class: any;
|
|
881
1001
|
}
|
package/index.js
CHANGED
|
@@ -9,10 +9,11 @@
|
|
|
9
9
|
*/
|
|
10
10
|
/// <reference path="gatling.d.ts" preserve="true" />
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.
|
|
13
|
-
exports.
|
|
14
|
-
exports.
|
|
15
|
-
exports.Ws = exports.
|
|
12
|
+
exports.DoIfEqualsOrElse = exports.DoIfEqualsOrElse$Then = exports.DoIfEquals$Then = exports.DoIf$Then = exports.Descriptors$Descriptor = exports.CoreDsl = exports.Cookie = exports.ConstantRate$ConstantRateOpenInjectionStep = exports.ConnectActionBuilder = exports.Collectors = exports.ClosedInjectionStep = exports.ClosedInjectionStep$StairsWithTime = exports.ClosedInjectionStep$Stairs = exports.ClosedInjectionStep$RampTo = exports.ClosedInjectionStep$Ramp = exports.ClosedInjectionStep$Constant = exports.ClosedInjectionStep$Composite = exports.ChronoUnit = exports.Choice = exports.Choice$WithWeight = exports.Choice$WithKey = exports.CheckBuilder = exports.CheckBuilder$Validate = exports.CheckBuilder$MultipleFind = exports.CheckBuilder$JsonOfTypeMultipleFind = exports.CheckBuilder$JsonOfTypeFind = exports.CheckBuilder$Find = exports.CheckBuilder$Final = exports.CheckBuilder$CaptureGroupCheckBuilder = exports.ChannelCredentials = exports.ChainBuilder = exports.CallOptions = exports.CallCredentials = exports.Body = exports.BodyPart = exports.Body$WithString = exports.Body$WithBytes = exports.Binary$UntypedCondition = exports.Binary$TypedCondition = exports.Assertion = exports.Assertion$WithPath = exports.Assertion$WithPathAndTimeMetric = exports.Assertion$WithPathAndTarget = exports.Assertion$WithPathAndCountMetric = exports.AsLongAs = exports.AsLongAsDuring = exports.AsLongAsDuring$On = exports.AsLongAs$On = exports.AddCookie = exports.ActionBuilder = void 0;
|
|
13
|
+
exports.GrpcServerStreamingServiceBuilder = exports.GrpcServerStreamStreamSendActionBuilder = exports.GrpcServerStreamAwaitStreamEndActionBuilder = exports.GrpcProtocolBuilder = exports.GrpcHeaders = exports.GrpcHeaders$Value = exports.GrpcDsl = exports.GrpcDsl$MessageResponseTimePolicy = exports.GrpcClientStreamingServiceBuilder = exports.GrpcClientStreamAwaitStreamEndActionBuilder = exports.GrpcBidirectionalStreamingServiceBuilder = exports.GrpcBidiStreamAwaitStreamEndActionBuilder = exports.Groups = exports.Groups$On = exports.GetCookie = exports.Forever = exports.Forever$On = exports.ForEach = exports.ForEach$On = exports.Filter = exports.Filter$DenyList = exports.Filter$AllowList = exports.Feeds = exports.FeederBuilder = exports.FeederBuilder$FileBased = exports.FeederBuilder$Batchable = exports.Executable = exports.Execs = exports.Errors = exports.Errors$TryMax = exports.Errors$ExitBlockOnFail = exports.DynamicMessage$Builder = exports.During = exports.During$On = exports.Duration = exports.DummyBuilder = exports.DoWhile = exports.DoWhileDuring = exports.DoWhileDuring$On = exports.DoWhile$On = exports.DoSwitch = exports.DoSwitchOrElse = exports.DoSwitchOrElse$OrElse = exports.DoSwitchOrElse$On = exports.DoSwitch$On = exports.DoIf = exports.DoIfOrElse = exports.DoIfOrElse$Then = exports.DoIfOrElse$OrElse = exports.DoIfEquals = void 0;
|
|
14
|
+
exports.PublishActionBuilder = exports.PublishActionBuilder$Checkable = exports.PublishActionBuilder$Base = exports.Proxy = exports.ProtocolBuilder = exports.PopulationBuilder = exports.Polling = exports.Polling$Every = exports.Pauses = exports.PauseType = exports.PauseType$UniformPercentage = exports.PauseType$UniformDuration = exports.PauseType$NormalWithStdDevDuration = exports.PauseType$NormalWithPercentageDuration = exports.PauseType$Custom = exports.Paces = exports.Optional = exports.OpenInjectionStep = exports.OpenInjectionStep$StressPeak = exports.OpenInjectionStep$Stairs = exports.OpenInjectionStep$Ramp = exports.OpenInjectionStep$RampRate = exports.OpenInjectionStep$ConstantRate = exports.Mqtt = exports.MqttQoS = exports.MqttPublishVariableHeader = exports.MqttProtocolBuilder = exports.MqttProperties = exports.MqttMessageType = exports.MqttInboundMessage = exports.MqttFixedHeader = exports.MqttDsl = exports.MqttBuilder = exports.Metadata = exports.Metadata$Key = exports.Metadata$BinaryMarshaller = exports.Metadata$AsciiMarshaller = exports.LastWillBuilder = exports.Iterable = exports.Http = exports.HttpResponseStatus = exports.HttpRequestActionBuilder = exports.HttpProtocolBuilder = exports.HttpProtocolBuilder$UntypedCondition = exports.HttpProtocolBuilder$TypedCondition = exports.HttpHeaders = exports.HttpDsl = exports.GrpcUnaryServiceBuilder = exports.GrpcUnaryActionBuilder = exports.Grpc = void 0;
|
|
15
|
+
exports.Ws$Prefix = exports.WithWeight$Then = exports.WithKey$Then = exports.WaitForMessagesActionBuilder = exports.UniformRandomSwitch = exports.UniformRandomSwitch$On = exports.ThrottleStep = exports.ThrottleStep$ReachIntermediate = exports.Text$UntypedCondition = exports.Text$TypedCondition = exports.TemporalUnit = exports.System = exports.SubscribeActionBuilder = exports.SubscribeActionBuilder$Checkable = exports.StructureBuilder = exports.String = exports.Stream = exports.Stairs$Times = exports.Stairs$Composite = exports.Sse = exports.SseSetCheckActionBuilder = exports.SseMessageCheck = exports.SseMessageCheck$UntypedCondition = exports.SseMessageCheck$TypedCondition = exports.SseConnectActionBuilder = exports.SseAwaitActionBuilder = exports.SseAwaitActionBuilder$On = exports.Sse$Prefix = exports.Simulation = exports.Simulation$SetUp = exports.Session = exports.ScenarioBuilder = exports.RoundRobinSwitch = exports.RoundRobinSwitch$On = exports.Response = exports.ResponseBody = exports.RequestWithBodyActionBuilder = exports.Request = exports.RequestBody = exports.RequestActionBuilder = exports.Repeat = exports.Repeat$On = exports.RendezVous = exports.RandomSwitch = exports.RandomSwitchOrElse = exports.RandomSwitchOrElse$OrElse = exports.RandomSwitchOrElse$On = exports.RandomSwitch$On = exports.RampRate$RampRateOpenInjectionStep = exports.RampRate$During = void 0;
|
|
16
|
+
exports.Ws = exports.WsSendTextActionBuilder = exports.WsSendBinaryActionBuilder = exports.WsFrameCheck = exports.WsFrameCheck$Text = exports.WsFrameCheck$Binary = exports.WsConnectActionBuilder = exports.WsAwaitActionBuilder = exports.WsAwaitActionBuilder$On = void 0;
|
|
16
17
|
exports.ActionBuilder = Java.type("io.gatling.javaapi.core.ActionBuilder");
|
|
17
18
|
exports.AddCookie = Java.type("io.gatling.javaapi.http.AddCookie");
|
|
18
19
|
exports.AsLongAs$On = Java.type("io.gatling.javaapi.core.loop.AsLongAs$On");
|
|
@@ -30,7 +31,10 @@ exports.Body$WithBytes = Java.type("io.gatling.javaapi.core.Body$WithBytes");
|
|
|
30
31
|
exports.Body$WithString = Java.type("io.gatling.javaapi.core.Body$WithString");
|
|
31
32
|
exports.BodyPart = Java.type("io.gatling.javaapi.http.BodyPart");
|
|
32
33
|
exports.Body = Java.type("io.gatling.javaapi.core.Body");
|
|
34
|
+
exports.CallCredentials = Java.type("io.grpc.CallCredentials");
|
|
35
|
+
exports.CallOptions = Java.type("io.grpc.CallOptions");
|
|
33
36
|
exports.ChainBuilder = Java.type("io.gatling.javaapi.core.ChainBuilder");
|
|
37
|
+
exports.ChannelCredentials = Java.type("io.grpc.ChannelCredentials");
|
|
34
38
|
exports.CheckBuilder$CaptureGroupCheckBuilder = Java.type("io.gatling.javaapi.core.CheckBuilder$CaptureGroupCheckBuilder");
|
|
35
39
|
exports.CheckBuilder$Final = Java.type("io.gatling.javaapi.core.CheckBuilder$Final");
|
|
36
40
|
exports.CheckBuilder$Find = Java.type("io.gatling.javaapi.core.CheckBuilder$Find");
|
|
@@ -55,6 +59,7 @@ exports.ConnectActionBuilder = Java.type("io.gatling.javaapi.mqtt.ConnectActionB
|
|
|
55
59
|
exports.ConstantRate$ConstantRateOpenInjectionStep = Java.type("io.gatling.javaapi.core.OpenInjectionStep$ConstantRate$ConstantRateOpenInjectionStep");
|
|
56
60
|
exports.Cookie = Java.type("io.netty.handler.codec.http.cookie.Cookie");
|
|
57
61
|
exports.CoreDsl = Java.type("io.gatling.javaapi.core.CoreDsl");
|
|
62
|
+
exports.Descriptors$Descriptor = Java.type("com.google.protobuf.Descriptors$Descriptor");
|
|
58
63
|
exports.DoIf$Then = Java.type("io.gatling.javaapi.core.condition.DoIf$Then");
|
|
59
64
|
exports.DoIfEquals$Then = Java.type("io.gatling.javaapi.core.condition.DoIfEquals$Then");
|
|
60
65
|
exports.DoIfEqualsOrElse$Then = Java.type("io.gatling.javaapi.core.condition.DoIfEqualsOrElse$Then");
|
|
@@ -77,6 +82,7 @@ exports.DummyBuilder = Java.type("io.gatling.javaapi.core.DummyBuilder");
|
|
|
77
82
|
exports.Duration = Java.type("java.time.Duration");
|
|
78
83
|
exports.During$On = Java.type("io.gatling.javaapi.core.loop.During$On");
|
|
79
84
|
exports.During = Java.type("io.gatling.javaapi.core.loop.During");
|
|
85
|
+
exports.DynamicMessage$Builder = Java.type("com.google.protobuf.DynamicMessage$Builder");
|
|
80
86
|
exports.Errors$ExitBlockOnFail = Java.type("io.gatling.javaapi.core.error.Errors$ExitBlockOnFail");
|
|
81
87
|
exports.Errors$TryMax = Java.type("io.gatling.javaapi.core.error.Errors$TryMax");
|
|
82
88
|
exports.Errors = Java.type("io.gatling.javaapi.core.error.Errors");
|
|
@@ -96,6 +102,21 @@ exports.Forever = Java.type("io.gatling.javaapi.core.loop.Forever");
|
|
|
96
102
|
exports.GetCookie = Java.type("io.gatling.javaapi.http.GetCookie");
|
|
97
103
|
exports.Groups$On = Java.type("io.gatling.javaapi.core.group.Groups$On");
|
|
98
104
|
exports.Groups = Java.type("io.gatling.javaapi.core.group.Groups");
|
|
105
|
+
exports.GrpcBidiStreamAwaitStreamEndActionBuilder = Java.type("io.gatling.javaapi.grpc.GrpcBidiStreamAwaitStreamEndActionBuilder");
|
|
106
|
+
exports.GrpcBidirectionalStreamingServiceBuilder = Java.type("io.gatling.javaapi.grpc.GrpcBidirectionalStreamingServiceBuilder");
|
|
107
|
+
exports.GrpcClientStreamAwaitStreamEndActionBuilder = Java.type("io.gatling.javaapi.grpc.GrpcClientStreamAwaitStreamEndActionBuilder");
|
|
108
|
+
exports.GrpcClientStreamingServiceBuilder = Java.type("io.gatling.javaapi.grpc.GrpcClientStreamingServiceBuilder");
|
|
109
|
+
exports.GrpcDsl$MessageResponseTimePolicy = Java.type("io.gatling.javaapi.grpc.GrpcDsl$MessageResponseTimePolicy");
|
|
110
|
+
exports.GrpcDsl = Java.type("io.gatling.javaapi.grpc.GrpcDsl");
|
|
111
|
+
exports.GrpcHeaders$Value = Java.type("io.gatling.javaapi.grpc.GrpcHeaders$Value");
|
|
112
|
+
exports.GrpcHeaders = Java.type("io.gatling.javaapi.grpc.GrpcHeaders");
|
|
113
|
+
exports.GrpcProtocolBuilder = Java.type("io.gatling.javaapi.grpc.GrpcProtocolBuilder");
|
|
114
|
+
exports.GrpcServerStreamAwaitStreamEndActionBuilder = Java.type("io.gatling.javaapi.grpc.GrpcServerStreamAwaitStreamEndActionBuilder");
|
|
115
|
+
exports.GrpcServerStreamStreamSendActionBuilder = Java.type("io.gatling.javaapi.grpc.GrpcServerStreamStreamSendActionBuilder");
|
|
116
|
+
exports.GrpcServerStreamingServiceBuilder = Java.type("io.gatling.javaapi.grpc.GrpcServerStreamingServiceBuilder");
|
|
117
|
+
exports.Grpc = Java.type("io.gatling.javaapi.grpc.Grpc");
|
|
118
|
+
exports.GrpcUnaryActionBuilder = Java.type("io.gatling.javaapi.grpc.GrpcUnaryActionBuilder");
|
|
119
|
+
exports.GrpcUnaryServiceBuilder = Java.type("io.gatling.javaapi.grpc.GrpcUnaryServiceBuilder");
|
|
99
120
|
exports.HttpDsl = Java.type("io.gatling.javaapi.http.HttpDsl");
|
|
100
121
|
exports.HttpHeaders = Java.type("io.netty.handler.codec.http.HttpHeaders");
|
|
101
122
|
exports.HttpProtocolBuilder$TypedCondition = Java.type("io.gatling.javaapi.http.HttpProtocolBuilder$TypedCondition");
|
|
@@ -106,6 +127,10 @@ exports.HttpResponseStatus = Java.type("io.netty.handler.codec.http.HttpResponse
|
|
|
106
127
|
exports.Http = Java.type("io.gatling.javaapi.http.Http");
|
|
107
128
|
exports.Iterable = Java.type("java.lang.Iterable");
|
|
108
129
|
exports.LastWillBuilder = Java.type("io.gatling.javaapi.mqtt.LastWillBuilder");
|
|
130
|
+
exports.Metadata$AsciiMarshaller = Java.type("io.grpc.Metadata$AsciiMarshaller");
|
|
131
|
+
exports.Metadata$BinaryMarshaller = Java.type("io.grpc.Metadata$BinaryMarshaller");
|
|
132
|
+
exports.Metadata$Key = Java.type("io.grpc.Metadata$Key");
|
|
133
|
+
exports.Metadata = Java.type("io.grpc.Metadata");
|
|
109
134
|
exports.MqttBuilder = Java.type("io.gatling.javaapi.mqtt.MqttBuilder");
|
|
110
135
|
exports.MqttDsl = Java.type("io.gatling.javaapi.mqtt.MqttDsl");
|
|
111
136
|
exports.MqttFixedHeader = Java.type("io.netty.handler.codec.mqtt.MqttFixedHeader");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gatling.io/jvm-types",
|
|
3
|
-
"version": "3.14.
|
|
3
|
+
"version": "3.14.600",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"homepage": "https://gatling.io",
|
|
6
6
|
"repository": "github:gatling/gatling-js",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"performance testing"
|
|
19
19
|
],
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"typescript": "5.9.
|
|
21
|
+
"typescript": "5.9.3"
|
|
22
22
|
},
|
|
23
23
|
"scripts": {
|
|
24
24
|
"clean": "rm -f ./index.js ./index.d.ts",
|