UNPKG

@sendbird/calls-react-native

Version:

Sendbird Calls SDK for React Native: Empower React Native apps with seamless audio, video, and group calling. Build interactive communication easily.

16 lines (15 loc) 530 B
import React from 'react'; import { ViewProps } from 'react-native'; import { BaseVideoViewProps } from '../types'; import { Participant } from './Participant'; export interface GroupCallVideoViewProps extends BaseVideoViewProps, ViewProps { participant?: Participant; roomId?: string; } export default class GroupCallVideoView extends React.PureComponent<GroupCallVideoViewProps> { private ref; private get handle(); private get validProps(); get videoViewId(): number; render(): React.JSX.Element; }