(instance: TestInstance | null)
| 12 | * @param instance The instance to check. |
| 13 | */ |
| 14 | export function isHostText(instance: TestInstance | null) { |
| 15 | return typeof instance?.type === 'string' && HOST_TEXT_NAMES.includes(instance.type); |
| 16 | } |
| 17 | |
| 18 | /** |
| 19 | * Checks if the given element is a host TextInput element. |
no outgoing calls
no test coverage detected
searching dependent graphs…