react-native-xsip
Version:
PJSIP module for React Native
29 lines (24 loc) • 600 B
text/typescript
import { default as Account } from './Account';
import { default as Call } from './Call';
import { default as Endpoint } from './Endpoint';
import { default as PreviewVideoView } from './PreviewVideoView';
import { default as RemoteVideoView } from './RemoteVideoView';
export * from './Account';
export * from './Call';
export * from './Endpoint';
export * from './PreviewVideoView';
export * from './RemoteVideoView';
export {
Account,
Call,
Endpoint,
// PreviewVideoView,
// RemoteVideoView,
}
export default {
Account,
Call,
Endpoint,
PreviewVideoView,
RemoteVideoView,
}