@types/k6 0.44.2 → 0.44.3
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 +1 -1
- k6/crypto.d.ts +20 -74
- k6/data.d.ts +2 -2
- k6/encoding.d.ts +1 -1
- k6/experimental/browser/element_handle.d.ts +206 -202
- k6/experimental/browser/frame.d.ts +363 -353
- k6/experimental/browser/index.d.ts +280 -262
- k6/experimental/browser/js_handle.d.ts +40 -40
- k6/experimental/browser/keyboard.d.ts +34 -34
- k6/experimental/browser/locator.d.ts +169 -166
- k6/experimental/browser/mouse.d.ts +33 -33
- k6/experimental/browser/page.d.ts +1410 -1318
- k6/experimental/browser/request.d.ts +82 -82
- k6/experimental/browser/response.d.ts +108 -108
- k6/experimental/browser/touchscreen.d.ts +6 -6
- k6/experimental/browser/worker.d.ts +7 -7
- k6/experimental/tracing.d.ts +10 -10
- k6/experimental/webcrypto.d.ts +22 -25
- k6/experimental/websockets.d.ts +4 -4
- k6/http.d.ts +25 -25
- k6/options.d.ts +25 -17
- k6/package.json +2 -2
- k6/ws.d.ts +1 -1
|
@@ -35,310 +35,328 @@ export type EvaluationArgument = object;
|
|
|
35
35
|
|
|
36
36
|
export type PageFunction<Arg, R> = string | ((arg: Unboxed<Arg>) => R);
|
|
37
37
|
|
|
38
|
-
export type Unboxed<Arg> =
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
38
|
+
export type Unboxed<Arg> = Arg extends [infer A0, infer A1]
|
|
39
|
+
? [Unboxed<A0>, Unboxed<A1>]
|
|
40
|
+
: Arg extends [infer A0, infer A1, infer A2]
|
|
41
|
+
? [Unboxed<A0>, Unboxed<A1>, Unboxed<A2>]
|
|
42
|
+
: Arg extends [infer A0, infer A1, infer A2, infer A3]
|
|
43
|
+
? [Unboxed<A0>, Unboxed<A1>, Unboxed<A2>, Unboxed<A3>]
|
|
44
|
+
: Arg extends Array<infer T>
|
|
45
|
+
? Array<Unboxed<T>>
|
|
46
|
+
: Arg extends object
|
|
47
|
+
? { [Key in keyof Arg]: Unboxed<Arg[Key]> }
|
|
48
|
+
: Arg;
|
|
45
49
|
|
|
46
50
|
export interface SelectOptionsObject {
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
51
|
+
/**
|
|
52
|
+
* Matches by `option.value`.
|
|
53
|
+
*/
|
|
54
|
+
value?: string;
|
|
55
|
+
|
|
56
|
+
/**
|
|
57
|
+
* Matches by `option.label`.
|
|
58
|
+
*/
|
|
59
|
+
label?: string;
|
|
60
|
+
|
|
61
|
+
/**
|
|
62
|
+
* Matches by the index.
|
|
63
|
+
*/
|
|
64
|
+
index?: number;
|
|
61
65
|
}
|
|
62
66
|
|
|
63
|
-
export type ResourceType =
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
67
|
+
export type ResourceType =
|
|
68
|
+
| 'document'
|
|
69
|
+
| 'stylesheet'
|
|
70
|
+
| 'image'
|
|
71
|
+
| 'media'
|
|
72
|
+
| 'font'
|
|
73
|
+
| 'script'
|
|
74
|
+
| 'texttrack'
|
|
75
|
+
| 'xhr'
|
|
76
|
+
| 'fetch'
|
|
77
|
+
| 'eventsource'
|
|
78
|
+
| 'websocket'
|
|
79
|
+
| 'manifest'
|
|
80
|
+
| 'other';
|
|
81
|
+
export type MouseButton = 'left' | 'right' | 'middle';
|
|
82
|
+
export type KeyboardModifier = 'Alt' | 'Control' | 'Meta' | 'Shift';
|
|
83
|
+
export type ElementState = 'attached' | 'detached' | 'visible' | 'hidden';
|
|
84
|
+
export type InputElementState = ElementState | 'enabled' | 'disabled' | 'editable';
|
|
85
|
+
export type LifecycleEvent = 'load' | 'domcontentloaded' | 'networkidle';
|
|
69
86
|
|
|
70
87
|
export interface TimeoutOptions {
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
88
|
+
/**
|
|
89
|
+
* Maximum time in milliseconds. Pass 0 to disable the timeout. Default is overridden by the setDefaultTimeout option on `BrowserContext` or `Page`.
|
|
90
|
+
* Defaults to 30000.
|
|
91
|
+
*/
|
|
92
|
+
timeout?: number;
|
|
76
93
|
}
|
|
77
94
|
|
|
78
95
|
export interface StrictnessOptions {
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
96
|
+
/**
|
|
97
|
+
* When `true`, the call requires selector to resolve to a single element.
|
|
98
|
+
* If given selector resolves to more than one element, the call throws
|
|
99
|
+
* an exception. Defaults to `false`.
|
|
100
|
+
*/
|
|
101
|
+
strict?: boolean;
|
|
85
102
|
}
|
|
86
103
|
|
|
87
104
|
export interface EventSequenceOptions {
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
105
|
+
/**
|
|
106
|
+
* Delay between events in milliseconds. Defaults to 0.
|
|
107
|
+
*/
|
|
108
|
+
delay?: number;
|
|
92
109
|
}
|
|
93
110
|
|
|
94
111
|
export type ElementHandleOptions = {
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
112
|
+
/**
|
|
113
|
+
* Setting this to `true` will bypass the actionability checks (visible,
|
|
114
|
+
* stable, enabled). Defaults to `false`.
|
|
115
|
+
*/
|
|
116
|
+
force?: boolean;
|
|
117
|
+
|
|
118
|
+
/**
|
|
119
|
+
* If set to `true` and a navigation occurs from performing this action, it will not wait for it to complete.
|
|
120
|
+
* Defaults to `false`.
|
|
121
|
+
*/
|
|
122
|
+
noWaitAfter?: boolean;
|
|
106
123
|
} & TimeoutOptions;
|
|
107
124
|
|
|
108
125
|
export type ElementHandlePointerOptions = ElementHandleOptions & {
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
126
|
+
/**
|
|
127
|
+
* Setting this to `true` will perform the actionability checks without
|
|
128
|
+
* performing the action. Useful to wait until the element is ready for the
|
|
129
|
+
* action without performing it. Defaults to `false`.
|
|
130
|
+
*/
|
|
131
|
+
trial?: boolean;
|
|
115
132
|
};
|
|
116
133
|
|
|
117
134
|
export type ElementClickOptions = ElementHandlePointerOptions & {
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
135
|
+
/**
|
|
136
|
+
* A point to use relative to the top left corner of the element. If not supplied,
|
|
137
|
+
* a visible point of the element is used.
|
|
138
|
+
*/
|
|
139
|
+
position?: { x: number; y: number };
|
|
123
140
|
};
|
|
124
141
|
|
|
125
142
|
export interface KeyboardModifierOptions {
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
143
|
+
/**
|
|
144
|
+
* `Alt`, `Control`, `Meta` or `Shift` modifiers keys pressed during the action.
|
|
145
|
+
* If not specified, currently pressed modifiers are used.
|
|
146
|
+
*/
|
|
147
|
+
modifiers?: KeyboardModifier[];
|
|
131
148
|
}
|
|
132
149
|
|
|
133
150
|
export type KeyboardPressOptions = {
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
} & EventSequenceOptions &
|
|
151
|
+
/**
|
|
152
|
+
* If set to `true` and a navigation occurs from performing this action, it
|
|
153
|
+
* will not wait for it to complete. Defaults to `false`.
|
|
154
|
+
*/
|
|
155
|
+
noWaitAfter?: boolean;
|
|
156
|
+
} & EventSequenceOptions &
|
|
157
|
+
TimeoutOptions;
|
|
140
158
|
|
|
141
159
|
export type MouseMoveOptions = ElementClickOptions & KeyboardModifierOptions;
|
|
142
160
|
|
|
143
161
|
export type MouseClickOptions = {
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
162
|
+
/**
|
|
163
|
+
* The mouse button to use during the action.
|
|
164
|
+
* Defaults to `left`.
|
|
165
|
+
*/
|
|
166
|
+
button?: MouseButton;
|
|
149
167
|
} & EventSequenceOptions;
|
|
150
168
|
|
|
151
169
|
export type MouseMultiClickOptions = MouseClickOptions & {
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
170
|
+
/**
|
|
171
|
+
* The number of times the action is performed.
|
|
172
|
+
* Defaults to 1.
|
|
173
|
+
*/
|
|
174
|
+
clickCount?: number;
|
|
157
175
|
};
|
|
158
176
|
|
|
159
177
|
export interface MouseDownUpOptions {
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
178
|
+
/**
|
|
179
|
+
* The mouse button to use during the action.
|
|
180
|
+
* Defaults to `left`.
|
|
181
|
+
*/
|
|
182
|
+
button?: MouseButton;
|
|
183
|
+
|
|
184
|
+
/**
|
|
185
|
+
* Defaults to 1.
|
|
186
|
+
*/
|
|
187
|
+
clickCount?: number;
|
|
170
188
|
}
|
|
171
189
|
|
|
172
190
|
export type ContentLoadOptions = {
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
191
|
+
/**
|
|
192
|
+
* When to consider operation succeeded, defaults to `load`. Events can be
|
|
193
|
+
* either:
|
|
194
|
+
* - `'domcontentloaded'` - consider operation to be finished when the
|
|
195
|
+
* `DOMContentLoaded` event is fired.
|
|
196
|
+
* - `'load'` - consider operation to be finished when the `load` event is
|
|
197
|
+
* fired.
|
|
198
|
+
* - `'networkidle'` - **DISCOURAGED** consider operation to be finished
|
|
199
|
+
* when there are no network connections for at least `500` ms. Don't use
|
|
200
|
+
* this method for testing especially with chatty websites where the event
|
|
201
|
+
* may never fire, rely on web assertions to assess readiness instead.
|
|
202
|
+
*/
|
|
203
|
+
waitUntil?: LifecycleEvent;
|
|
186
204
|
} & TimeoutOptions;
|
|
187
205
|
|
|
188
206
|
export type NavigationOptions = {
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
207
|
+
/**
|
|
208
|
+
* Referer header value.
|
|
209
|
+
*/
|
|
210
|
+
referer?: string;
|
|
193
211
|
} & ContentLoadOptions;
|
|
194
212
|
|
|
195
213
|
export interface ResourceTiming {
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
214
|
+
/**
|
|
215
|
+
* Request start time in milliseconds elapsed since January 1, 1970 00:00:00 UTC
|
|
216
|
+
*/
|
|
217
|
+
startTime: number;
|
|
218
|
+
|
|
219
|
+
/**
|
|
220
|
+
* Time immediately before the browser starts the domain name lookup for the resource.
|
|
221
|
+
* The value is given in milliseconds relative to `startTime`, -1 if not available.
|
|
222
|
+
*/
|
|
223
|
+
domainLookupStart: number;
|
|
224
|
+
|
|
225
|
+
/**
|
|
226
|
+
* Time immediately after the browser ends the domain name lookup for the resource.
|
|
227
|
+
* The value is given in milliseconds relative to `startTime`, -1 if not available.
|
|
228
|
+
*/
|
|
229
|
+
domainLookupEnd: number;
|
|
230
|
+
|
|
231
|
+
/**
|
|
232
|
+
* Time immediately before the user agent starts establishing the connection to the server
|
|
233
|
+
* to retrieve the resource. The value is given in milliseconds relative to `startTime`,
|
|
234
|
+
* -1 if not available.
|
|
235
|
+
*/
|
|
236
|
+
connectStart: number;
|
|
237
|
+
|
|
238
|
+
/**
|
|
239
|
+
* Time immediately before the browser starts the handshake process to secure the current
|
|
240
|
+
* connection. The value is given in milliseconds relative to `startTime`, -1 if not available.
|
|
241
|
+
*/
|
|
242
|
+
secureConnectionStart: number;
|
|
243
|
+
|
|
244
|
+
/**
|
|
245
|
+
* Time immediately after the user agent establishes the connection to the server
|
|
246
|
+
* to retrieve the resource. The value is given in milliseconds relative to `startTime`,
|
|
247
|
+
* -1 if not available.
|
|
248
|
+
*/
|
|
249
|
+
connectEnd: number;
|
|
250
|
+
|
|
251
|
+
/**
|
|
252
|
+
* Time immediately before the browser starts requesting the resource from the server,
|
|
253
|
+
* cache, or local resource. The value is given in milliseconds relative to `startTime`,
|
|
254
|
+
* -1 if not available.
|
|
255
|
+
*/
|
|
256
|
+
requestStart: number;
|
|
257
|
+
|
|
258
|
+
/**
|
|
259
|
+
* Time immediately after the browser receives the first byte of the response from the server,
|
|
260
|
+
* cache, or local resource. The value is given in milliseconds relative to `startTime`,
|
|
261
|
+
* -1 if not available.
|
|
262
|
+
*/
|
|
263
|
+
responseStart: number;
|
|
264
|
+
|
|
265
|
+
/**
|
|
266
|
+
* Time immediately after the browser receives the last byte of the resource or immediately
|
|
267
|
+
* before the transport connection is closed, whichever comes first. The value is given
|
|
268
|
+
* in milliseconds relative to `startTime`, -1 if not available.
|
|
269
|
+
*/
|
|
270
|
+
responseEnd: number;
|
|
253
271
|
}
|
|
254
272
|
|
|
255
273
|
export interface SecurityDetailsObject {
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
274
|
+
/**
|
|
275
|
+
* Common Name component of the Issuer field. The value is extracted from the
|
|
276
|
+
* certificate. This should only be used for informational purposes.
|
|
277
|
+
*/
|
|
278
|
+
issuer?: string;
|
|
279
|
+
|
|
280
|
+
/**
|
|
281
|
+
* The specific TLS protocol used. For example `TLS 1.3`.
|
|
282
|
+
*/
|
|
283
|
+
protocol?: string;
|
|
284
|
+
|
|
285
|
+
/**
|
|
286
|
+
* Common Name component of the Subject field. The value is extracted from the
|
|
287
|
+
* certificate. This should only be used for informational purposes.
|
|
288
|
+
*/
|
|
289
|
+
subjectName?: string;
|
|
290
|
+
|
|
291
|
+
/**
|
|
292
|
+
* Unix timestamp (in seconds) specifying the exact date/time when this cert
|
|
293
|
+
* becomes valid.
|
|
294
|
+
*/
|
|
295
|
+
validFrom?: number;
|
|
296
|
+
|
|
297
|
+
/**
|
|
298
|
+
* Unix timestamp (in seconds) specifying the exact date/time when this cert
|
|
299
|
+
* becomes invalid.
|
|
300
|
+
*/
|
|
301
|
+
validTo?: number;
|
|
302
|
+
|
|
303
|
+
/**
|
|
304
|
+
* String with hex encoded SHA256 fingerprint of the certificate. The value is
|
|
305
|
+
* extracted from the certificate.
|
|
306
|
+
*/
|
|
307
|
+
sanList?: string[];
|
|
290
308
|
}
|
|
291
309
|
|
|
292
310
|
export interface Rect {
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
311
|
+
/**
|
|
312
|
+
* The x coordinate of the element in pixels.
|
|
313
|
+
* (0, 0) is the top left corner of the viewport.
|
|
314
|
+
*/
|
|
315
|
+
x: number;
|
|
316
|
+
|
|
317
|
+
/**
|
|
318
|
+
* The y coordinate of the element in pixels.
|
|
319
|
+
* (0, 0) is the top left corner of the viewport.
|
|
320
|
+
*/
|
|
321
|
+
y: number;
|
|
322
|
+
|
|
323
|
+
/**
|
|
324
|
+
* The width of the element in pixels.
|
|
325
|
+
*/
|
|
326
|
+
width: number;
|
|
327
|
+
|
|
328
|
+
/**
|
|
329
|
+
* The height of the element in pixels.
|
|
330
|
+
*/
|
|
331
|
+
height: number;
|
|
314
332
|
}
|
|
315
333
|
|
|
316
334
|
export type ImageFormat = 'jpeg' | 'png';
|
|
317
335
|
|
|
318
336
|
export interface ScreenshotOptions {
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
337
|
+
/**
|
|
338
|
+
* The file path to save the image to. The screenshot type will be inferred from file extension.
|
|
339
|
+
*/
|
|
340
|
+
path?: string;
|
|
341
|
+
|
|
342
|
+
/**
|
|
343
|
+
* The screenshot format.
|
|
344
|
+
* @default 'png'
|
|
345
|
+
*/
|
|
346
|
+
type?: ImageFormat;
|
|
347
|
+
|
|
348
|
+
/**
|
|
349
|
+
* Hide default white background and allow capturing screenshots with transparency.
|
|
350
|
+
* Not applicable to `jpeg` images.
|
|
351
|
+
* @default false
|
|
352
|
+
*/
|
|
353
|
+
omitBackground?: boolean;
|
|
354
|
+
|
|
355
|
+
/**
|
|
356
|
+
* The quality of the image, between 0-100. Not applicable to `png` images.
|
|
357
|
+
* @default 100
|
|
358
|
+
*/
|
|
359
|
+
quality?: number;
|
|
342
360
|
}
|
|
343
361
|
|
|
344
362
|
/**
|
|
@@ -350,22 +368,22 @@ export interface ScreenshotOptions {
|
|
|
350
368
|
export type PollingMethod = 'raf' | 'mutation' | 'interval';
|
|
351
369
|
|
|
352
370
|
export interface PollingOptions {
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
371
|
+
/**
|
|
372
|
+
* Polling method to use.
|
|
373
|
+
* @default 'raf'
|
|
374
|
+
*/
|
|
375
|
+
polling?: 'raf' | 'mutation' | 'interval';
|
|
376
|
+
|
|
377
|
+
/**
|
|
378
|
+
* Polling interval in milliseconds if `polling` is set to `interval`.
|
|
379
|
+
*/
|
|
380
|
+
interval?: number;
|
|
363
381
|
}
|
|
364
382
|
|
|
365
383
|
export interface ElementStateFilter {
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
384
|
+
/**
|
|
385
|
+
* The element state to filter for.
|
|
386
|
+
* @default 'visible'
|
|
387
|
+
*/
|
|
388
|
+
state?: ElementState;
|
|
371
389
|
}
|