(target: any)
| 1417 | } |
| 1418 | |
| 1419 | function nativeTarget(target: any): any { |
| 1420 | return isNativeScriptView(target) |
| 1421 | ? (nativeViewFor(target) ?? target) |
| 1422 | : target; |
| 1423 | } |
| 1424 | |
| 1425 | function nativeViewFor(view: any): any | null { |
| 1426 | return ( |
no test coverage detected