react-native-whip-whep
Version:
An implementation of WHIP and WHEP protocols functionalities for React Native.
15 lines • 723 B
TypeScript
import * as React from "react";
import { ReactNativeMobileWhipClientViewProps, WhipClientViewRef } from "./ReactNativeMobileWhepClient.types";
/**
* A component that renders a native view for WHIP player type.
*
* This component accepts style and other props defined in
* ReactNativeMobileWhipClientViewProps.
*
* @param {ReactNativeMobileWhipClientViewProps & { ref?: React.Ref<WhipClientViewRef> }} props - The properties to customize the component.
* @returns {JSX.Element} The rendered component.
*/
export declare function WhipClientView(props: ReactNativeMobileWhipClientViewProps & {
ref?: React.Ref<WhipClientViewRef>;
}): React.JSX.Element;
//# sourceMappingURL=ReactNativeMobileWhipClientView.d.ts.map