chore: cleanup types

This commit is contained in:
Nathan Walker
2022-01-08 11:40:57 -08:00
parent 4e338076fb
commit e2efec29d9

View File

@ -1174,7 +1174,7 @@ const touchAnimationProperty = new Property<ViewCommon, boolean | TouchAnimation
},
valueConverter(value) {
if (isObject(value)) {
return <any>value;
return <TouchAnimationOptions>value;
} else {
return booleanConverter(value);
}