react-native-whip-whep
Version:
An implementation of WHIP and WHEP protocols functionalities for React Native.
27 lines • 1.53 kB
TypeScript
import * as React from "react";
import { ReactNativeMobileWhepClientViewProps, WhepClientViewRef } from "./ReactNativeMobileWhepClient.types";
/**
* A component that renders a native view for WHEP player type.
*
* This component forwards a ref to the native view, allowing for direct manipulation
* of the component instance. It accepts style and other props defined in
* ReactNativeMobileWhepClientViewProps.
*
* @param {ReactNativeMobileWhepClientViewProps} props - The properties to customize the component.
* @param {React.ForwardedRef<WhepClientViewRef>} ref - Ref to the component instance.
* @returns {JSX.Element} The rendered component.
*/
export declare const WhepClientView: React.ForwardRefExoticComponent<ReactNativeMobileWhepClientViewProps & React.RefAttributes<WhepClientViewRef>>;
/**
* A component that renders a native view for WHIP player type.
*
* This component forwards a ref to the native view, allowing for direct manipulation
* of the component instance. It accepts style and other props defined in
* ReactNativeMobileWhepClientViewProps.
*
* @param {ReactNativeMobileWhepClientViewProps} props - The properties to customize the component.
* @param {React.ForwardedRef<WhepClientViewRef>} ref - Ref to the component instance.
* @returns {JSX.Element} The rendered component.
*/
export declare const WhipClientView: React.ForwardRefExoticComponent<ReactNativeMobileWhepClientViewProps & React.RefAttributes<WhepClientViewRef>>;
//# sourceMappingURL=ReactNativeMobileWhepClientView.d.ts.map