react-native-youtube-bridge
Version:
🎥 Easy-to-use YouTube player for React Native with cross-platform support
11 lines • 498 B
TypeScript
import type { ReactNode } from 'react';
import { type DimensionValue, type StyleProp, type ViewStyle } from 'react-native';
type YoutubeViewWrapperProps = {
children: ReactNode;
width?: DimensionValue;
height?: DimensionValue;
style?: StyleProp<ViewStyle>;
};
declare function YoutubeViewWrapper({ children, width, height, style }: YoutubeViewWrapperProps): import("react/jsx-runtime").JSX.Element;
export default YoutubeViewWrapper;
//# sourceMappingURL=YoutubeViewWrapper.d.ts.map