@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.
15 lines (14 loc) • 491 B
TypeScript
import React from 'react';
import { ViewProps } from 'react-native';
import { BaseVideoViewProps } from '../types';
export interface DirectCallVideoViewProps extends BaseVideoViewProps, ViewProps {
viewType: 'local' | 'remote';
callId?: string;
}
export default class DirectCallVideoView extends React.PureComponent<DirectCallVideoViewProps> {
private ref;
private get handle();
private get validProps();
get videoViewId(): number;
render(): React.JSX.Element;
}