UNPKG

react-native-screens

Version:
16 lines 588 B
import * as React from 'react'; import { StyleProp, ViewStyle, type ViewProps } from 'react-native'; import { StackPresentationTypes } from '../types'; type ContainerProps = ViewProps & { contentStyle?: StyleProp<ViewStyle>; stackPresentation: StackPresentationTypes; children: React.ReactNode; }; /** * This view must *not* be flattened. * See https://github.com/software-mansion/react-native-screens/pull/1825 * for detailed explanation. */ declare let DebugContainer: React.FC<ContainerProps>; export default DebugContainer; //# sourceMappingURL=DebugContainer.d.ts.map