@interactify-live/player-react-native
Version:
React Native library for Interactify player with media display, widgets, and MQTT integration
11 lines (10 loc) • 374 B
TypeScript
import React from "react";
import { InteractionItem, InteractionRendererOptions } from "./types";
interface InteractionRendererProps extends InteractionRendererOptions {
interactions: InteractionItem[];
style?: any;
width?: number;
height?: number;
}
declare const InteractionRenderer: React.FC<InteractionRendererProps>;
export default InteractionRenderer;