(view: View, targetIndex: number)
| 1498 | } |
| 1499 | |
| 1500 | function nativeScriptChildAt(view: View, targetIndex: number): View | null { |
| 1501 | return nativeScriptChildren(view)[targetIndex] ?? null; |
| 1502 | } |
| 1503 | |
| 1504 | function nativeScriptChildren(view: View): View[] { |
| 1505 | const result: View[] = []; |
no test coverage detected