UNPKG

react-native-vimeo-bridge

Version:

🎥 Easy-to-use Vimeo player for React Native with cross-platform support

11 lines • 488 B
import type { ReactNode } from 'react'; import { type DimensionValue, type StyleProp, type ViewStyle } from 'react-native'; type VimeoViewWrapperProps = { children: ReactNode; width?: DimensionValue; height?: DimensionValue; style?: StyleProp<ViewStyle>; }; declare function VimeoViewWrapper({ children, width, height, style }: VimeoViewWrapperProps): import("react/jsx-runtime").JSX.Element; export default VimeoViewWrapper; //# sourceMappingURL=VimeoViewWrapper.d.ts.map