UNPKG

react-native-reanimated

Version:

More powerful alternative to Animated library for React Native.

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