(color: any)
| 2084 | } |
| 2085 | |
| 2086 | function colorValue(color: any): JSONObject | null { |
| 2087 | if (!color) { |
| 2088 | return null; |
| 2089 | } |
| 2090 | return safeCall(() => { |
| 2091 | if (!isKindOf(color, "UIColor")) { |
| 2092 | return null; |
| 2093 | } |
| 2094 | const description = stringValue(color); |
| 2095 | if (!description) { |
| 2096 | return null; |
| 2097 | } |
| 2098 | return { description }; |
| 2099 | }, null); |
| 2100 | } |
| 2101 | |
| 2102 | function accessibilityInfo(view: any): JSONObject { |
| 2103 | return { |
no test coverage detected