UNPKG

@testing-library/react-native

Version:

Simple and complete React Native testing utilities that encourage good testing practices.

16 lines (15 loc) 247 B
/** * Location of an element. */ export interface Point { y: number; x: number; } /** * Size of an element. */ export interface Size { height: number; width: number; } export type StringWithAutocomplete<T> = T | (string & {});