Configuration for a custom plugin component in the player.

interface RNPluginComponent {
    height?: number;
    initialProps?: Record<string, any>;
    name: string;
    width?: number;
}

Properties

height?: number

Height of the plugin component in pixels.

initialProps?: Record<string, any>

Initial properties to pass to the plugin component.

name: string

Name identifier for the plugin component.

width?: number

Width of the plugin component in pixels.