UNPKG

react-native-reanimated

Version:

More powerful alternative to Animated library for React Native.

11 lines (8 loc) 280 B
'use strict'; import type { InstanceOrElement } from '../commonTypes'; import type { AnimatedRef } from '../hook/commonTypes'; export type DispatchCommand = <TRef extends InstanceOrElement>( animatedRef: AnimatedRef<TRef>, commandName: string, args?: unknown[] ) => void;