react-native-reanimated
Version:
More powerful alternative to Animated library for React Native.
12 lines (9 loc) • 347 B
text/typescript
;
import type { InternalHostInstance } from '../commonTypes';
import type { IAnimatedComponentInternalBase } from '../createAnimatedComponent/commonTypes';
import type { HostInstance } from './types';
export function findHostInstance(
_ref: IAnimatedComponentInternalBase | InternalHostInstance
): HostInstance {
return null!;
}