UNPKG

fcr-core

Version:

Core APIs for building online scenes

23 lines (22 loc) 2.04 kB
export { FcrUserRole, FcrStreamState } from './type'; export { FcrPermissionAction, FcrPrivilegeUserRole } from './room-control/privilege-control/type'; export type { FcrError } from './utilities/error'; export type { FcrCoreEngineConfig, FcrDualVideoStreamConfig } from './type'; export type { FcrDesktopMediaControl, FcrDesktopMediaObserver, FcrMobileMediaControl, FcrMobileMediaObserver, } from './media-control/type'; export type { FcrMonitorControl, FcrMonitorObserver } from './monitor-control/type'; export type { FcrBaseRoomControl, FcrRoomObserver } from './room-control/type'; export type { FcrUserControl, FcrUserObserver } from './room-control/user-control/type'; export type { FcrStreamControl, FcrStreamObserver } from './room-control/stream-control/type'; export type { FcrPrivilegeControl, FcrPermission } from './room-control/privilege-control/type'; export { AgoraRteLatencyLevel as FcrStreamLatencyLevel } from './imports'; export { AgoraRteRegion as FcrRegion } from './imports'; export { AgoraRteMediaStreamType as FcrStreamType } from './imports'; export { AgoraRteUserUpdatedReason as FcrUserUpdatedReason } from './imports'; export { AgoraRteRoomConnectorType as FcrRoomConnectorType } from './imports'; export { AgoraRtcVideoSourceType as FcrVideoSourceType, AgoraRtcAudioSourceType as FcrAudioSourceType, AgoraRtcMediaSourceState as FcrMediaSourceState, } from './imports'; export { AgoraRtcRenderMode as FcrVideoRenderMode, AgoraRtcVideoStreamType as FcrVideoStreamType, } from './imports'; export { AgoraRtcCapability as FcrCapability } from './imports'; export { AgoraRtcAiDenoiseLevel as FcrAiDenoiseLevel } from './imports'; export { AgoraRteStreamPrivilegeOperation as FcrStreamPrivilegeOperation, AgoraRteStreamPrivilegeVideoSourceType as FcrStreamPrivilegeVideoSourceType, AgoraRteStreamPrivilegeAudioSourceType as FcrStreamPrivilegeAudioSourceType, } from './imports'; export { AgoraRteConnectionState as FcrConnectionState } from './imports'; export { FcrCoreEngine, registerPlugin } from './imports';