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