react-native-screens
Version:
Native navigation primitives for your React Native app.
11 lines (9 loc) • 375 B
text/typescript
import React from 'react';
import type { ReactNativeElement, ViewProps } from 'react-native';
import { type NativeProps } from '../../../fabric/gamma/stack/StackHostNativeComponent';
export type StackHostProps = {
children: ViewProps['children'];
ref?: React.RefObject<
(React.Component<NativeProps> & ReactNativeElement) | null
>; // TODO: Work on these types
};