UNPKG

@react-navigation/stack

Version:

Stack navigator component for iOS and Android with animated transitions and gestures

8 lines (7 loc) 292 B
import * as React from 'react'; import RNCMaskedView from '@react-native-community/masked-view'; declare type Props = React.ComponentProps<typeof RNCMaskedView> & { children: React.ReactElement; }; export default function MaskedView({ children, ...rest }: Props): JSX.Element; export {};