@100mslive/react-native-room-kit
Version:
100ms Room Kit provides simple & easy to use UI components to build Live Streaming & Video Conferencing experiences in your apps.
14 lines • 566 B
TypeScript
import * as React from 'react';
import type { StyleProp, ViewStyle } from 'react-native';
import type { HMSVideoViewMode, HMSPeer } from '@100mslive/react-native-hms';
export interface VideoViewProps {
trackId: string;
peer: HMSPeer;
zoomIn?: boolean;
overlay?: boolean;
isDegraded?: boolean;
scaleType?: HMSVideoViewMode;
containerStyle?: StyleProp<ViewStyle>;
}
export declare const VideoView: React.MemoExoticComponent<React.ForwardRefExoticComponent<VideoViewProps & React.RefAttributes<any>>>;
//# sourceMappingURL=VideoView.d.ts.map