UNPKG

@interactify-live/player-react-native

Version:

React Native library for Interactify player with media display, widgets, and MQTT integration

12 lines (11 loc) 364 B
import React from 'react'; import { ViewStyle } from 'react-native'; import { WidgetManagerOptions } from './types'; interface WidgetManagerProps extends WidgetManagerOptions { children?: React.ReactNode; style?: ViewStyle; width?: number; height?: number; } declare const WidgetManager: React.FC<WidgetManagerProps>; export default WidgetManager;