File tree 1 file changed +8
-1
lines changed
1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -472,13 +472,20 @@ declare module '@testing-library/react-native' {
472
472
declare export var act : ( callback : ( ) = > void ) => Thenable ;
473
473
declare export var within : ( instance : ReactTestInstance ) = > Queries ;
474
474
declare export var getQueriesForElement : (
475
- instance : ReactTestInstance
475
+ element : ReactTestInstance
476
476
) = > Queries ;
477
477
478
478
declare export var getDefaultNormalizer : (
479
479
normalizerConfig ? : NormalizerConfig
480
480
) = > NormalizerFn ;
481
481
482
+ declare export var isHiddenFromAccessibility : (
483
+ element : ReactTestInstance | null
484
+ ) = > boolean ;
485
+ declare export var isInaccessible : (
486
+ element : ReactTestInstance | null
487
+ ) = > boolean ;
488
+
482
489
declare type RenderHookResult < Result , Props > = {
483
490
rerender : ( props : Props ) => void ,
484
491
result : { current : Result } ,
You can’t perform that action at this time.
0 commit comments