( result: DirectIosSelectorFallbackResult | ResolvedDirectIosSelectorQuery, )
| 386 | } |
| 387 | |
| 388 | function isDirectIosSelectorErrorResult( |
| 389 | result: DirectIosSelectorFallbackResult | ResolvedDirectIosSelectorQuery, |
| 390 | ): result is DirectIosSelectorErrorResult { |
| 391 | return result !== null && 'kind' in result && result.kind === 'error'; |
| 392 | } |
| 393 | |
| 394 | function buildDirectIosGetResult( |
| 395 | property: 'text' | 'attrs', |
no outgoing calls
no test coverage detected