You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
456 B
11 lines
456 B
import { ReactTestInstance } from 'react-test-renderer';
|
|
interface FindAllOptions {
|
|
/** Match elements hidden from accessibility */
|
|
includeHiddenElements?: boolean;
|
|
/** RTL-compatible alias to `includeHiddenElements` */
|
|
hidden?: boolean;
|
|
matchDeepestOnly?: boolean;
|
|
}
|
|
export declare function findAll(root: ReactTestInstance, predicate: (element: ReactTestInstance) => boolean, options?: FindAllOptions): ReactTestInstance[];
|
|
export {};
|