@testing-library/react-native
Version:
Simple and complete React Native testing utilities that encourage good testing practices.
10 lines (9 loc) • 352 B
TypeScript
import type { ReactTestInstance } from 'react-test-renderer';
import type { TextMatch } from '../../matches';
export interface AccessibilityValueMatcher {
min?: number;
max?: number;
now?: number;
text?: TextMatch;
}
export declare function matchAccessibilityValue(node: ReactTestInstance, matcher: AccessibilityValueMatcher): boolean;