UNPKG

react-native-reanimated

Version:

More powerful alternative to Animated library for React Native.

14 lines (11 loc) 306 B
'use strict'; import type { HostInstance } from '../platform-specific/findHostInstance'; export function getViewInfo(element: HostInstance): { viewName?: string; viewTag?: number; } { return { viewName: element?._viewConfig?.uiViewClassName as string, viewTag: element?.__nativeTag, }; }