UNPKG

react-native-screens

Version:
12 lines (10 loc) 395 B
import React from 'react'; import type { HostInstance, ViewProps } from 'react-native'; import { type NativeProps } from '../../../../fabric/gamma/stack/StackHostNativeComponent'; export type StackHostProps = { children: NonNullable<ViewProps['children']>; // TODO: Work on these types ref?: | React.RefObject<(React.Component<NativeProps> & HostInstance) | null> | undefined; };