(value: string)
| 245 | defaultValue: 'inherit', |
| 246 | affectsLayout: false, |
| 247 | valueConverter(value: string) { |
| 248 | try { |
| 249 | return booleanConverter(value); |
| 250 | } catch (e) { |
| 251 | return 'inherit'; |
| 252 | } |
| 253 | }, |
| 254 | }); |
| 255 | iosTextAnimationProperty.register(TextBaseCommon); |
| 256 |
nothing calls this directly
no test coverage detected