@@ -212,63 +212,63 @@ interface A11yAPI {
212
212
// Label
213
213
getByLabelText : (
214
214
matcher : TextMatch ,
215
- queryOptions ? : TextMatchOptions
215
+ options ? : TextMatchOptions
216
216
) = > GetReturn ;
217
217
getAllByLabelText : (
218
218
matcher : TextMatch ,
219
- queryOptions ? : TextMatchOptions
219
+ options ? : TextMatchOptions
220
220
) = > GetAllReturn ;
221
221
queryByLabelText : (
222
222
matcher : TextMatch ,
223
- queryOptions ? : TextMatchOptions
223
+ options ? : TextMatchOptions
224
224
) = > QueryReturn ;
225
225
queryAllByLabelText : (
226
226
matcher : TextMatch ,
227
- queryOptions ? : TextMatchOptions
227
+ options ? : TextMatchOptions
228
228
) = > QueryAllReturn ;
229
229
findByLabelText : (
230
230
matcher : TextMatch ,
231
231
queryOptions ? : TextMatchOptions ,
232
-
233
232
waitForOptions ? : WaitForOptions
234
233
) = > FindReturn ;
235
234
findAllByLabelText : (
236
235
matcher : TextMatch ,
236
+ queryOptions ? : TextMatchOptions ,
237
237
waitForOptions ? : WaitForOptions
238
238
) = > FindAllReturn ;
239
239
240
240
// Hint
241
241
getByA11yHint : (
242
242
matcher : TextMatch ,
243
- queryOptions ? : TextMatchOptions
243
+ options ? : TextMatchOptions
244
244
) = > GetReturn ;
245
245
getByHintText : (
246
246
matcher : TextMatch ,
247
- queryOptions ? : TextMatchOptions
247
+ options ? : TextMatchOptions
248
248
) = > GetReturn ;
249
249
getAllByA11yHint : (
250
250
matcher : TextMatch ,
251
- queryOptions ? : TextMatchOptions
251
+ options ? : TextMatchOptions
252
252
) = > GetAllReturn ;
253
253
getAllByHintText : (
254
254
matcher : TextMatch ,
255
- queryOptions ? : TextMatchOptions
255
+ options ? : TextMatchOptions
256
256
) = > GetAllReturn ;
257
257
queryByA11yHint : (
258
258
matcher : TextMatch ,
259
- queryOptions ? : TextMatchOptions
259
+ options ? : TextMatchOptions
260
260
) = > QueryReturn ;
261
261
queryByHintText : (
262
262
matcher : TextMatch ,
263
- queryOptions ? : TextMatchOptions
263
+ options ? : TextMatchOptions
264
264
) = > QueryReturn ;
265
265
queryAllByA11yHint : (
266
266
matcher : TextMatch ,
267
- queryOptions ? : TextMatchOptions
267
+ options ? : TextMatchOptions
268
268
) = > QueryAllReturn ;
269
269
queryAllByHintText : (
270
270
matcher : TextMatch ,
271
- queryOptions ? : TextMatchOptions
271
+ options ? : TextMatchOptions
272
272
) = > QueryAllReturn ;
273
273
findByA11yHint : (
274
274
matcher : TextMatch ,
@@ -295,24 +295,24 @@ interface A11yAPI {
295
295
getByRole : ( matcher : A11yRole | RegExp , role ? : ByRoleOptions ) = > GetReturn ;
296
296
getAllByRole : (
297
297
matcher : A11yRole | RegExp ,
298
- role ? : ByRoleOptions
298
+ options ? : ByRoleOptions
299
299
) = > GetAllReturn ;
300
300
queryByRole : (
301
301
matcher : A11yRole | RegExp ,
302
- role ? : ByRoleOptions
302
+ options ? : ByRoleOptions
303
303
) = > QueryReturn ;
304
304
queryAllByRole : (
305
305
matcher : A11yRole | RegExp ,
306
- role ? : ByRoleOptions
306
+ options ? : ByRoleOptions
307
307
) = > QueryAllReturn ;
308
308
findByRole : (
309
309
matcher : A11yRole | RegExp ,
310
- role ? : ByRoleOptions ,
310
+ queryOptions ? : ByRoleOptions ,
311
311
waitForOptions ? : WaitForOptions
312
312
) = > FindReturn ;
313
313
findAllByRole : (
314
314
matcher : A11yRole | RegExp ,
315
- role ? : ByRoleOptions ,
315
+ queryOptions ? : ByRoleOptions ,
316
316
waitForOptions ? : WaitForOptions
317
317
) = > FindAllReturn ;
318
318
0 commit comments