react-native-reanimated
Version:
More powerful alternative to Animated library for React Native.
14 lines (11 loc) • 384 B
text/typescript
;
import type { InternalHostInstance, ShadowNodeWrapper } from './commonTypes';
import type { HostInstance } from './platform-specific/types';
export function getShadowNodeWrapperFromRef(
_ref: InternalHostInstance,
_hostInstance?: HostInstance
): ShadowNodeWrapper {
throw new Error(
'[Reanimated] Trying to call `getShadowNodeWrapperFromRef` on web.'
);
}