Update react-native-reanimated.d.ts (#220)

This commit is contained in:
iamolegga
2019-03-28 13:26:43 +03:00
committed by Michał Osadnik
parent 119953c41b
commit e40860fa43

View File

@@ -58,7 +58,7 @@ declare module 'react-native-reanimated' {
export type Adaptable<T> =
| T
| AnimatedNode<T>
| ReadonlyArray<T | AnimatedNode<T>>;
| ReadonlyArray<Adaptable<T>>;
type BinaryOperator = (
left: Adaptable<number>,
right: Adaptable<number>