agora-electron-sdk 4.1.1-rc.1 → 4.2.0-dev.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -21
- package/README.md +143 -143
- package/gulpfile.js +5 -4
- package/js/AgoraSdk.js +62 -60
- package/js/Private/AgoraBase.js +4575 -3269
- package/js/Private/AgoraMediaBase.js +968 -564
- package/js/Private/AgoraMediaPlayerTypes.js +422 -310
- package/js/Private/IAgoraLog.js +86 -74
- package/js/Private/IAgoraMediaEngine.js +32 -32
- package/js/Private/IAgoraMediaPlayer.js +16 -16
- package/js/Private/IAgoraMediaPlayerSource.js +3 -3
- package/js/Private/IAgoraMediaRecorder.js +12 -12
- package/js/Private/IAgoraMediaStreamingSource.js +84 -0
- package/js/Private/IAgoraMusicContentCenter.js +239 -81
- package/js/Private/IAgoraRhythmPlayer.js +70 -62
- package/js/Private/IAgoraRtcEngine.js +1807 -948
- package/js/Private/IAgoraRtcEngineEx.js +26 -18
- package/js/Private/IAgoraSpatialAudio.js +74 -30
- package/js/Private/IAudioDeviceManager.js +20 -20
- package/js/Private/extension/AgoraBaseExtension.js +2 -2
- package/js/Private/extension/AgoraMediaBaseExtension.js +2 -2
- package/js/Private/extension/AgoraMediaPlayerTypesExtension.js +2 -2
- package/js/Private/extension/IAgoraLogExtension.js +2 -2
- package/js/Private/extension/IAgoraMediaEngineExtension.js +2 -2
- package/js/Private/extension/IAgoraMediaPlayerExtension.js +2 -2
- package/js/Private/extension/IAgoraMediaPlayerSourceExtension.js +2 -2
- package/js/Private/extension/IAgoraMediaRecorderExtension.js +2 -2
- package/js/Private/extension/IAgoraMusicContentCenterExtension.js +2 -2
- package/js/Private/extension/IAgoraRhythmPlayerExtension.js +2 -2
- package/js/Private/extension/IAgoraRtcEngineExExtension.js +2 -2
- package/js/Private/extension/IAgoraRtcEngineExtension.js +2 -2
- package/js/Private/extension/IAgoraSpatialAudioExtension.js +2 -2
- package/js/Private/extension/IAudioDeviceManagerExtension.js +2 -2
- package/js/Private/impl/AgoraBaseImpl.js +23 -23
- package/js/Private/impl/AgoraMediaBaseImpl.js +118 -138
- package/js/Private/impl/IAgoraMediaEngineImpl.js +287 -325
- package/js/Private/impl/IAgoraMediaPlayerImpl.js +932 -938
- package/js/Private/impl/IAgoraMediaPlayerSourceImpl.js +63 -63
- package/js/Private/impl/IAgoraMediaRecorderImpl.js +47 -67
- package/js/Private/impl/IAgoraMusicContentCenterImpl.js +353 -323
- package/js/Private/impl/IAgoraRtcEngineExImpl.js +945 -907
- package/js/Private/impl/IAgoraRtcEngineImpl.js +4742 -4702
- package/js/Private/impl/IAgoraSpatialAudioImpl.js +362 -362
- package/js/Private/impl/IAudioDeviceManagerImpl.js +375 -375
- package/js/Private/internal/AudioDeviceManagerInternal.js +44 -44
- package/js/Private/internal/IrisApiEngine.js +391 -382
- package/js/Private/internal/LocalSpatialAudioEngineInternal.js +46 -46
- package/js/Private/internal/MediaEngineInternal.js +119 -123
- package/js/Private/internal/MediaPlayerInternal.js +215 -213
- package/js/Private/internal/MediaRecorderInternal.js +82 -81
- package/js/Private/internal/MusicContentCenterInternal.js +128 -130
- package/js/Private/internal/RtcEngineExInternal.js +422 -363
- package/js/Private/internal/emitter/EventEmitter.js +111 -111
- package/js/Private/ti/AgoraBase-ti.js +40 -40
- package/js/Private/ti/AgoraMediaBase-ti.js +71 -73
- package/js/Private/ti/AgoraMediaPlayerTypes-ti.js +5 -5
- package/js/Private/ti/IAgoraLog-ti.js +5 -5
- package/js/Private/ti/IAgoraMediaEngine-ti.js +5 -5
- package/js/Private/ti/IAgoraMediaPlayer-ti.js +38 -42
- package/js/Private/ti/IAgoraMediaPlayerSource-ti.js +48 -48
- package/js/Private/ti/IAgoraMediaRecorder-ti.js +5 -5
- package/js/Private/ti/IAgoraMediaStreamingSource-ti.js +5 -0
- package/js/Private/ti/IAgoraMusicContentCenter-ti.js +41 -41
- package/js/Private/ti/IAgoraRhythmPlayer-ti.js +5 -5
- package/js/Private/ti/IAgoraRtcEngine-ti.js +139 -139
- package/js/Private/ti/IAgoraRtcEngineEx-ti.js +5 -5
- package/js/Private/ti/IAgoraSpatialAudio-ti.js +5 -5
- package/js/Private/ti/IAudioDeviceManager-ti.js +5 -5
- package/js/Renderer/AgoraView.js +128 -131
- package/js/Renderer/IRenderer.js +40 -48
- package/js/Renderer/IRendererManager.js +9 -0
- package/js/Renderer/RendererManager.js +479 -392
- package/js/Renderer/{GlRenderer → WebGLRenderer}/index.js +469 -473
- package/js/Renderer/{GlRenderer → WebGLRenderer}/webgl-utils.js +1337 -1337
- package/js/Renderer/YUVCanvasRenderer/index.js +195 -185
- package/js/Renderer/index.js +18 -0
- package/js/Types.js +17 -29
- package/js/Utils.js +168 -173
- package/package.json +61 -103
- package/scripts/bootstrap.js +1 -1
- package/scripts/build.js +1 -0
- package/scripts/buildJS.js +3 -3
- package/scripts/clean.js +2 -1
- package/scripts/downloadPrebuild.js +5 -5
- package/scripts/getConfig.js +3 -2
- package/scripts/synclib.js +8 -5
- package/scripts/util.js +3 -2
- package/scripts/zipBuild.js +2 -1
- package/ts/AgoraSdk.ts +9 -6
- package/ts/Private/AgoraBase.ts +278 -173
- package/ts/Private/AgoraMediaBase.ts +167 -100
- package/ts/Private/AgoraMediaPlayerTypes.ts +1 -1
- package/ts/Private/IAgoraMediaEngine.ts +43 -56
- package/ts/Private/IAgoraMediaPlayer.ts +90 -104
- package/ts/Private/IAgoraMediaPlayerSource.ts +3 -8
- package/ts/Private/IAgoraMediaRecorder.ts +8 -35
- package/ts/Private/IAgoraMediaStreamingSource.ts +80 -0
- package/ts/Private/IAgoraMusicContentCenter.ts +93 -12
- package/ts/Private/IAgoraRtcEngine.ts +807 -910
- package/ts/Private/IAgoraRtcEngineEx.ts +187 -191
- package/ts/Private/IAgoraSpatialAudio.ts +40 -22
- package/ts/Private/IAudioDeviceManager.ts +35 -13
- package/ts/Private/extension/IAgoraMediaEngineExtension.ts +1 -1
- package/ts/Private/extension/IAgoraMediaPlayerExtension.ts +4 -7
- package/ts/Private/extension/IAgoraMediaRecorderExtension.ts +6 -1
- package/ts/Private/extension/IAgoraMusicContentCenterExtension.ts +1 -1
- package/ts/Private/extension/IAgoraRtcEngineExtension.ts +4 -4
- package/ts/Private/impl/AgoraBaseImpl.ts +3 -3
- package/ts/Private/impl/AgoraMediaBaseImpl.ts +36 -42
- package/ts/Private/impl/IAgoraMediaEngineImpl.ts +79 -127
- package/ts/Private/impl/IAgoraMediaPlayerImpl.ts +106 -106
- package/ts/Private/impl/IAgoraMediaRecorderImpl.ts +13 -45
- package/ts/Private/impl/IAgoraMusicContentCenterImpl.ts +61 -16
- package/ts/Private/impl/IAgoraRtcEngineExImpl.ts +129 -59
- package/ts/Private/impl/IAgoraRtcEngineImpl.ts +490 -416
- package/ts/Private/impl/IAgoraSpatialAudioImpl.ts +5 -3
- package/ts/Private/impl/IAudioDeviceManagerImpl.ts +4 -2
- package/ts/Private/internal/AudioDeviceManagerInternal.ts +6 -5
- package/ts/Private/internal/IrisApiEngine.ts +41 -32
- package/ts/Private/internal/LocalSpatialAudioEngineInternal.ts +17 -13
- package/ts/Private/internal/MediaEngineInternal.ts +9 -11
- package/ts/Private/internal/MediaPlayerInternal.ts +42 -31
- package/ts/Private/internal/MediaRecorderInternal.ts +24 -22
- package/ts/Private/internal/MusicContentCenterInternal.ts +16 -18
- package/ts/Private/internal/RtcEngineExInternal.ts +189 -66
- package/ts/Private/ti/AgoraMediaBase-ti.ts +9 -10
- package/ts/Private/ti/IAgoraMediaPlayer-ti.ts +0 -5
- package/{js/Private/ti/AgoraMediaPlayerTypes-ti.d.ts → ts/Private/ti/IAgoraMediaStreamingSource-ti.ts} +11 -6
- package/ts/Private/ti/IAgoraMusicContentCenter-ti.ts +4 -4
- package/ts/Private/ti/IAgoraRtcEngine-ti.ts +4 -4
- package/ts/Renderer/AgoraView.ts +12 -7
- package/ts/Renderer/IRenderer.ts +11 -16
- package/ts/Renderer/IRendererManager.ts +35 -0
- package/ts/Renderer/RendererManager.ts +146 -82
- package/ts/Renderer/{GlRenderer → WebGLRenderer}/index.ts +36 -51
- package/ts/Renderer/YUVCanvasRenderer/index.ts +41 -25
- package/ts/Renderer/index.ts +2 -0
- package/ts/Types.ts +43 -23
- package/ts/Utils.ts +7 -12
- package/types/AgoraSdk.d.ts +38 -36
- package/types/AgoraSdk.d.ts.map +1 -0
- package/types/Private/AgoraBase.d.ts +4455 -4358
- package/types/Private/AgoraBase.d.ts.map +1 -0
- package/types/Private/AgoraMediaBase.d.ts +1125 -1070
- package/types/Private/AgoraMediaBase.d.ts.map +1 -0
- package/types/Private/AgoraMediaPlayerTypes.d.ts +409 -408
- package/types/Private/AgoraMediaPlayerTypes.d.ts.map +1 -0
- package/types/Private/IAgoraLog.d.ts +81 -80
- package/types/Private/IAgoraLog.d.ts.map +1 -0
- package/types/Private/IAgoraMediaEngine.d.ts +184 -193
- package/types/Private/IAgoraMediaEngine.d.ts.map +1 -0
- package/types/Private/IAgoraMediaPlayer.d.ts +533 -546
- package/types/Private/IAgoraMediaPlayer.d.ts.map +1 -0
- package/types/Private/IAgoraMediaPlayerSource.d.ts +83 -88
- package/types/Private/IAgoraMediaPlayerSource.d.ts.map +1 -0
- package/types/Private/IAgoraMediaRecorder.d.ts +29 -49
- package/types/Private/IAgoraMediaRecorder.d.ts.map +1 -0
- package/types/Private/IAgoraMediaStreamingSource.d.ts +42 -0
- package/types/Private/IAgoraMediaStreamingSource.d.ts.map +1 -0
- package/types/Private/IAgoraMusicContentCenter.d.ts +336 -255
- package/types/Private/IAgoraMusicContentCenter.d.ts.map +1 -0
- package/types/Private/IAgoraRhythmPlayer.d.ts +65 -64
- package/types/Private/IAgoraRhythmPlayer.d.ts.map +1 -0
- package/types/Private/IAgoraRtcEngine.d.ts +4948 -5058
- package/types/Private/IAgoraRtcEngine.d.ts.map +1 -0
- package/types/Private/IAgoraRtcEngineEx.d.ts +554 -570
- package/types/Private/IAgoraRtcEngineEx.d.ts.map +1 -0
- package/types/Private/IAgoraSpatialAudio.d.ts +266 -248
- package/types/Private/IAgoraSpatialAudio.d.ts.map +1 -0
- package/types/Private/IAudioDeviceManager.d.ts +255 -233
- package/types/Private/IAudioDeviceManager.d.ts.map +1 -0
- package/types/Private/extension/AgoraBaseExtension.d.ts +2 -1
- package/types/Private/extension/AgoraBaseExtension.d.ts.map +1 -0
- package/types/Private/extension/AgoraMediaBaseExtension.d.ts +2 -1
- package/types/Private/extension/AgoraMediaBaseExtension.d.ts.map +1 -0
- package/types/Private/extension/AgoraMediaPlayerTypesExtension.d.ts +2 -1
- package/types/Private/extension/AgoraMediaPlayerTypesExtension.d.ts.map +1 -0
- package/types/Private/extension/IAgoraLogExtension.d.ts +2 -1
- package/types/Private/extension/IAgoraLogExtension.d.ts.map +1 -0
- package/types/Private/extension/IAgoraMediaEngineExtension.d.ts +41 -40
- package/types/Private/extension/IAgoraMediaEngineExtension.d.ts.map +1 -0
- package/types/Private/extension/IAgoraMediaPlayerExtension.d.ts +47 -46
- package/types/Private/extension/IAgoraMediaPlayerExtension.d.ts.map +1 -0
- package/types/Private/extension/IAgoraMediaPlayerSourceExtension.d.ts +2 -1
- package/types/Private/extension/IAgoraMediaPlayerSourceExtension.d.ts.map +1 -0
- package/types/Private/extension/IAgoraMediaRecorderExtension.d.ts +45 -40
- package/types/Private/extension/IAgoraMediaRecorderExtension.d.ts.map +1 -0
- package/types/Private/extension/IAgoraMusicContentCenterExtension.d.ts +21 -20
- package/types/Private/extension/IAgoraMusicContentCenterExtension.d.ts.map +1 -0
- package/types/Private/extension/IAgoraRhythmPlayerExtension.d.ts +2 -1
- package/types/Private/extension/IAgoraRhythmPlayerExtension.d.ts.map +1 -0
- package/types/Private/extension/IAgoraRtcEngineExExtension.d.ts +2 -1
- package/types/Private/extension/IAgoraRtcEngineExExtension.d.ts.map +1 -0
- package/types/Private/extension/IAgoraRtcEngineExtension.d.ts +43 -42
- package/types/Private/extension/IAgoraRtcEngineExtension.d.ts.map +1 -0
- package/types/Private/extension/IAgoraSpatialAudioExtension.d.ts +2 -1
- package/types/Private/extension/IAgoraSpatialAudioExtension.d.ts.map +1 -0
- package/types/Private/extension/IAudioDeviceManagerExtension.d.ts +2 -1
- package/types/Private/extension/IAudioDeviceManagerExtension.d.ts.map +1 -0
- package/types/Private/impl/AgoraBaseImpl.d.ts +3 -2
- package/types/Private/impl/AgoraBaseImpl.d.ts.map +1 -0
- package/types/Private/impl/AgoraMediaBaseImpl.d.ts +9 -7
- package/types/Private/impl/AgoraMediaBaseImpl.d.ts.map +1 -0
- package/types/Private/impl/IAgoraMediaEngineImpl.d.ts +40 -43
- package/types/Private/impl/IAgoraMediaEngineImpl.d.ts.map +1 -0
- package/types/Private/impl/IAgoraMediaPlayerImpl.d.ts +141 -141
- package/types/Private/impl/IAgoraMediaPlayerImpl.d.ts.map +1 -0
- package/types/Private/impl/IAgoraMediaPlayerSourceImpl.d.ts +3 -2
- package/types/Private/impl/IAgoraMediaPlayerSourceImpl.d.ts.map +1 -0
- package/types/Private/impl/IAgoraMediaRecorderImpl.d.ts +11 -13
- package/types/Private/impl/IAgoraMediaRecorderImpl.d.ts.map +1 -0
- package/types/Private/impl/IAgoraMusicContentCenterImpl.d.ts +59 -51
- package/types/Private/impl/IAgoraMusicContentCenterImpl.d.ts.map +1 -0
- package/types/Private/impl/IAgoraRtcEngineExImpl.d.ts +106 -101
- package/types/Private/impl/IAgoraRtcEngineExImpl.d.ts.map +1 -0
- package/types/Private/impl/IAgoraRtcEngineImpl.d.ts +570 -566
- package/types/Private/impl/IAgoraRtcEngineImpl.d.ts.map +1 -0
- package/types/Private/impl/IAgoraSpatialAudioImpl.d.ts +49 -48
- package/types/Private/impl/IAgoraSpatialAudioImpl.d.ts.map +1 -0
- package/types/Private/impl/IAudioDeviceManagerImpl.d.ts +65 -64
- package/types/Private/impl/IAudioDeviceManagerImpl.d.ts.map +1 -0
- package/types/Private/internal/AudioDeviceManagerInternal.d.ts +9 -8
- package/types/Private/internal/AudioDeviceManagerInternal.d.ts.map +1 -0
- package/types/Private/internal/IrisApiEngine.d.ts +148 -146
- package/types/Private/internal/IrisApiEngine.d.ts.map +1 -0
- package/types/Private/internal/LocalSpatialAudioEngineInternal.d.ts +19 -18
- package/types/Private/internal/LocalSpatialAudioEngineInternal.d.ts.map +1 -0
- package/types/Private/internal/MediaEngineInternal.d.ts +22 -21
- package/types/Private/internal/MediaEngineInternal.d.ts.map +1 -0
- package/types/Private/internal/MediaPlayerInternal.d.ts +34 -33
- package/types/Private/internal/MediaPlayerInternal.d.ts.map +1 -0
- package/types/Private/internal/MediaRecorderInternal.d.ts +18 -15
- package/types/Private/internal/MediaRecorderInternal.d.ts.map +1 -0
- package/types/Private/internal/MusicContentCenterInternal.d.ts +40 -39
- package/types/Private/internal/MusicContentCenterInternal.d.ts.map +1 -0
- package/types/Private/internal/RtcEngineExInternal.d.ts +80 -73
- package/types/Private/internal/RtcEngineExInternal.d.ts.map +1 -0
- package/{js → types}/Private/internal/emitter/EventEmitter.d.ts +60 -59
- package/types/Private/internal/emitter/EventEmitter.d.ts.map +1 -0
- package/types/Private/ti/AgoraBase-ti.d.ts +8 -7
- package/types/Private/ti/AgoraBase-ti.d.ts.map +1 -0
- package/types/Private/ti/AgoraMediaBase-ti.d.ts +14 -12
- package/types/Private/ti/AgoraMediaBase-ti.d.ts.map +1 -0
- package/types/Private/ti/AgoraMediaPlayerTypes-ti.d.ts +7 -6
- package/types/Private/ti/AgoraMediaPlayerTypes-ti.d.ts.map +1 -0
- package/types/Private/ti/IAgoraLog-ti.d.ts +7 -6
- package/types/Private/ti/IAgoraLog-ti.d.ts.map +1 -0
- package/types/Private/ti/IAgoraMediaEngine-ti.d.ts +7 -6
- package/types/Private/ti/IAgoraMediaEngine-ti.d.ts.map +1 -0
- package/types/Private/ti/IAgoraMediaPlayer-ti.d.ts +8 -8
- package/types/Private/ti/IAgoraMediaPlayer-ti.d.ts.map +1 -0
- package/types/Private/ti/IAgoraMediaPlayerSource-ti.d.ts +8 -7
- package/types/Private/ti/IAgoraMediaPlayerSource-ti.d.ts.map +1 -0
- package/types/Private/ti/IAgoraMediaRecorder-ti.d.ts +7 -6
- package/types/Private/ti/IAgoraMediaRecorder-ti.d.ts.map +1 -0
- package/{js/Private/ti/IAgoraMediaRecorder-ti.d.ts → types/Private/ti/IAgoraMediaStreamingSource-ti.d.ts} +7 -6
- package/types/Private/ti/IAgoraMediaStreamingSource-ti.d.ts.map +1 -0
- package/types/Private/ti/IAgoraMusicContentCenter-ti.d.ts +8 -7
- package/types/Private/ti/IAgoraMusicContentCenter-ti.d.ts.map +1 -0
- package/types/Private/ti/IAgoraRhythmPlayer-ti.d.ts +7 -6
- package/types/Private/ti/IAgoraRhythmPlayer-ti.d.ts.map +1 -0
- package/types/Private/ti/IAgoraRtcEngine-ti.d.ts +10 -9
- package/types/Private/ti/IAgoraRtcEngine-ti.d.ts.map +1 -0
- package/types/Private/ti/IAgoraRtcEngineEx-ti.d.ts +7 -6
- package/types/Private/ti/IAgoraRtcEngineEx-ti.d.ts.map +1 -0
- package/types/Private/ti/IAgoraSpatialAudio-ti.d.ts +7 -6
- package/types/Private/ti/IAgoraSpatialAudio-ti.d.ts.map +1 -0
- package/types/Private/ti/IAudioDeviceManager-ti.d.ts +7 -6
- package/types/Private/ti/IAudioDeviceManager-ti.d.ts.map +1 -0
- package/types/Renderer/AgoraView.d.ts +70 -70
- package/types/Renderer/AgoraView.d.ts.map +1 -0
- package/types/Renderer/IRenderer.d.ts +22 -21
- package/types/Renderer/IRenderer.d.ts.map +1 -0
- package/types/Renderer/IRendererManager.d.ts +18 -0
- package/types/Renderer/IRendererManager.d.ts.map +1 -0
- package/types/Renderer/RendererManager.d.ts +154 -71
- package/types/Renderer/RendererManager.d.ts.map +1 -0
- package/types/Renderer/{GlRenderer → WebGLRenderer}/index.d.ts +49 -59
- package/types/Renderer/WebGLRenderer/index.d.ts.map +1 -0
- package/types/Renderer/WebGLRenderer/webgl-utils.d.ts +1 -0
- package/types/Renderer/WebGLRenderer/webgl-utils.d.ts.map +1 -0
- package/types/Renderer/YUVCanvasRenderer/index.d.ts +16 -16
- package/types/Renderer/YUVCanvasRenderer/index.d.ts.map +1 -0
- package/types/Renderer/index.d.ts +3 -0
- package/types/Renderer/index.d.ts.map +1 -0
- package/types/Types.d.ts +280 -260
- package/types/Types.d.ts.map +1 -0
- package/types/Utils.d.ts +59 -58
- package/types/Utils.d.ts.map +1 -0
- package/js/AgoraSdk.d.ts +0 -36
- package/js/Private/AgoraBase.d.ts +0 -4358
- package/js/Private/AgoraMediaBase.d.ts +0 -1070
- package/js/Private/AgoraMediaPlayerTypes.d.ts +0 -408
- package/js/Private/IAgoraLog.d.ts +0 -80
- package/js/Private/IAgoraMediaEngine.d.ts +0 -193
- package/js/Private/IAgoraMediaPlayer.d.ts +0 -546
- package/js/Private/IAgoraMediaPlayerSource.d.ts +0 -88
- package/js/Private/IAgoraMediaRecorder.d.ts +0 -49
- package/js/Private/IAgoraMusicContentCenter.d.ts +0 -255
- package/js/Private/IAgoraRhythmPlayer.d.ts +0 -64
- package/js/Private/IAgoraRtcEngine.d.ts +0 -5058
- package/js/Private/IAgoraRtcEngineEx.d.ts +0 -570
- package/js/Private/IAgoraSpatialAudio.d.ts +0 -248
- package/js/Private/IAudioDeviceManager.d.ts +0 -233
- package/js/Private/extension/AgoraBaseExtension.d.ts +0 -1
- package/js/Private/extension/AgoraMediaBaseExtension.d.ts +0 -1
- package/js/Private/extension/AgoraMediaPlayerTypesExtension.d.ts +0 -1
- package/js/Private/extension/IAgoraLogExtension.d.ts +0 -1
- package/js/Private/extension/IAgoraMediaEngineExtension.d.ts +0 -40
- package/js/Private/extension/IAgoraMediaPlayerExtension.d.ts +0 -46
- package/js/Private/extension/IAgoraMediaPlayerSourceExtension.d.ts +0 -1
- package/js/Private/extension/IAgoraMediaRecorderExtension.d.ts +0 -40
- package/js/Private/extension/IAgoraMusicContentCenterExtension.d.ts +0 -20
- package/js/Private/extension/IAgoraRhythmPlayerExtension.d.ts +0 -1
- package/js/Private/extension/IAgoraRtcEngineExExtension.d.ts +0 -1
- package/js/Private/extension/IAgoraRtcEngineExtension.d.ts +0 -42
- package/js/Private/extension/IAgoraSpatialAudioExtension.d.ts +0 -1
- package/js/Private/extension/IAudioDeviceManagerExtension.d.ts +0 -1
- package/js/Private/impl/AgoraBaseImpl.d.ts +0 -2
- package/js/Private/impl/AgoraMediaBaseImpl.d.ts +0 -7
- package/js/Private/impl/IAgoraMediaEngineImpl.d.ts +0 -43
- package/js/Private/impl/IAgoraMediaPlayerImpl.d.ts +0 -141
- package/js/Private/impl/IAgoraMediaPlayerSourceImpl.d.ts +0 -2
- package/js/Private/impl/IAgoraMediaRecorderImpl.d.ts +0 -13
- package/js/Private/impl/IAgoraMusicContentCenterImpl.d.ts +0 -51
- package/js/Private/impl/IAgoraRtcEngineExImpl.d.ts +0 -101
- package/js/Private/impl/IAgoraRtcEngineImpl.d.ts +0 -566
- package/js/Private/impl/IAgoraSpatialAudioImpl.d.ts +0 -48
- package/js/Private/impl/IAudioDeviceManagerImpl.d.ts +0 -64
- package/js/Private/internal/AudioDeviceManagerInternal.d.ts +0 -8
- package/js/Private/internal/IrisApiEngine.d.ts +0 -146
- package/js/Private/internal/LocalSpatialAudioEngineInternal.d.ts +0 -18
- package/js/Private/internal/MediaEngineInternal.d.ts +0 -21
- package/js/Private/internal/MediaPlayerInternal.d.ts +0 -33
- package/js/Private/internal/MediaRecorderInternal.d.ts +0 -15
- package/js/Private/internal/MusicContentCenterInternal.d.ts +0 -39
- package/js/Private/internal/RtcEngineExInternal.d.ts +0 -73
- package/js/Private/ti/AgoraBase-ti.d.ts +0 -7
- package/js/Private/ti/AgoraMediaBase-ti.d.ts +0 -12
- package/js/Private/ti/IAgoraLog-ti.d.ts +0 -6
- package/js/Private/ti/IAgoraMediaEngine-ti.d.ts +0 -6
- package/js/Private/ti/IAgoraMediaPlayer-ti.d.ts +0 -8
- package/js/Private/ti/IAgoraMediaPlayerSource-ti.d.ts +0 -7
- package/js/Private/ti/IAgoraMusicContentCenter-ti.d.ts +0 -7
- package/js/Private/ti/IAgoraRhythmPlayer-ti.d.ts +0 -6
- package/js/Private/ti/IAgoraRtcEngine-ti.d.ts +0 -9
- package/js/Private/ti/IAgoraRtcEngineEx-ti.d.ts +0 -6
- package/js/Private/ti/IAgoraSpatialAudio-ti.d.ts +0 -6
- package/js/Private/ti/IAudioDeviceManager-ti.d.ts +0 -6
- package/js/Renderer/AgoraView.d.ts +0 -70
- package/js/Renderer/GlRenderer/index.d.ts +0 -59
- package/js/Renderer/GlRenderer/webgl-utils.d.ts +0 -0
- package/js/Renderer/IRenderer.d.ts +0 -21
- package/js/Renderer/RendererManager.d.ts +0 -71
- package/js/Renderer/YUVCanvasRenderer/index.d.ts +0 -16
- package/js/Types.d.ts +0 -260
- package/js/Utils.d.ts +0 -58
- /package/ts/Renderer/{GlRenderer → WebGLRenderer}/webgl-utils.js +0 -0
|
@@ -1,73 +1,80 @@
|
|
|
1
|
-
import { Channel } from '../../Types';
|
|
2
|
-
import { AudioEncodedFrameObserverConfig, AudioRecordingConfiguration, ClientRoleOptions, ClientRoleType, DataStreamConfig, IAudioEncodedFrameObserver, SimulcastStreamConfig, SimulcastStreamMode, VideoCanvas,
|
|
3
|
-
import { IAudioSpectrumObserver } from '../AgoraMediaBase';
|
|
4
|
-
import { IMediaEngine } from '../IAgoraMediaEngine';
|
|
5
|
-
import { IMediaPlayer } from '../IAgoraMediaPlayer';
|
|
6
|
-
import { IMediaRecorder } from '../IAgoraMediaRecorder';
|
|
7
|
-
import { IMusicContentCenter } from '../IAgoraMusicContentCenter';
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import { ILocalSpatialAudioEngine } from '../IAgoraSpatialAudio';
|
|
11
|
-
import { IAudioDeviceManager } from '../IAudioDeviceManager';
|
|
12
|
-
import { IRtcEngineEvent } from '../extension/IAgoraRtcEngineExtension';
|
|
13
|
-
import { IRtcEngineExImpl } from '../impl/IAgoraRtcEngineExImpl';
|
|
14
|
-
import { EmitterSubscription } from './emitter/EventEmitter';
|
|
15
|
-
export declare class RtcEngineExInternal extends IRtcEngineExImpl {
|
|
16
|
-
static _event_handlers: IRtcEngineEventHandler[];
|
|
17
|
-
static _direct_cdn_streaming_event_handler: IDirectCdnStreamingEventHandler[];
|
|
18
|
-
static _metadata_observer: IMetadataObserver[];
|
|
19
|
-
static _audio_encoded_frame_observers: IAudioEncodedFrameObserver[];
|
|
20
|
-
static _audio_spectrum_observers: IAudioSpectrumObserver[];
|
|
21
|
-
private _audio_device_manager;
|
|
22
|
-
private _video_device_manager;
|
|
23
|
-
private _media_engine;
|
|
24
|
-
private
|
|
25
|
-
private
|
|
26
|
-
private
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
protected
|
|
44
|
-
protected
|
|
45
|
-
protected
|
|
46
|
-
protected
|
|
47
|
-
protected
|
|
48
|
-
protected
|
|
49
|
-
protected
|
|
50
|
-
protected
|
|
51
|
-
protected
|
|
52
|
-
protected
|
|
53
|
-
protected
|
|
54
|
-
protected
|
|
55
|
-
protected
|
|
56
|
-
protected
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
1
|
+
import { Channel } from '../../Types';
|
|
2
|
+
import { AudioEncodedFrameObserverConfig, AudioRecordingConfiguration, ClientRoleOptions, ClientRoleType, DataStreamConfig, EchoTestConfiguration, IAudioEncodedFrameObserver, RecorderStreamInfo, SimulcastStreamConfig, SimulcastStreamMode, VideoCanvas, VideoMirrorModeType, WatermarkOptions } from '../AgoraBase';
|
|
3
|
+
import { IAudioSpectrumObserver, RenderModeType, VideoSourceType } from '../AgoraMediaBase';
|
|
4
|
+
import { IMediaEngine } from '../IAgoraMediaEngine';
|
|
5
|
+
import { IMediaPlayer } from '../IAgoraMediaPlayer';
|
|
6
|
+
import { IMediaRecorder } from '../IAgoraMediaRecorder';
|
|
7
|
+
import { IMusicContentCenter } from '../IAgoraMusicContentCenter';
|
|
8
|
+
import { ChannelMediaOptions, DirectCdnStreamingMediaOptions, IDirectCdnStreamingEventHandler, IMetadataObserver, IRtcEngineEventHandler, IVideoDeviceManager, LeaveChannelOptions, MetadataType, RtcEngineContext, SDKBuildInfo, ScreenCaptureConfiguration, ScreenCaptureSourceInfo, Size } from '../IAgoraRtcEngine';
|
|
9
|
+
import { RtcConnection } from '../IAgoraRtcEngineEx';
|
|
10
|
+
import { ILocalSpatialAudioEngine } from '../IAgoraSpatialAudio';
|
|
11
|
+
import { IAudioDeviceManager } from '../IAudioDeviceManager';
|
|
12
|
+
import { IRtcEngineEvent } from '../extension/IAgoraRtcEngineExtension';
|
|
13
|
+
import { IRtcEngineExImpl } from '../impl/IAgoraRtcEngineExImpl';
|
|
14
|
+
import type { EmitterSubscription } from './emitter/EventEmitter';
|
|
15
|
+
export declare class RtcEngineExInternal extends IRtcEngineExImpl {
|
|
16
|
+
static _event_handlers: IRtcEngineEventHandler[];
|
|
17
|
+
static _direct_cdn_streaming_event_handler: IDirectCdnStreamingEventHandler[];
|
|
18
|
+
static _metadata_observer: IMetadataObserver[];
|
|
19
|
+
static _audio_encoded_frame_observers: IAudioEncodedFrameObserver[];
|
|
20
|
+
static _audio_spectrum_observers: IAudioSpectrumObserver[];
|
|
21
|
+
private _audio_device_manager;
|
|
22
|
+
private _video_device_manager;
|
|
23
|
+
private _media_engine;
|
|
24
|
+
private _music_content_center;
|
|
25
|
+
private _local_spatial_audio_engine;
|
|
26
|
+
private _events;
|
|
27
|
+
initialize(context: RtcEngineContext): number;
|
|
28
|
+
release(sync?: boolean): void;
|
|
29
|
+
_addListenerPreCheck<EventType extends keyof IRtcEngineEvent>(eventType: EventType): boolean;
|
|
30
|
+
addListener<EventType extends keyof IRtcEngineEvent>(eventType: EventType, listener: IRtcEngineEvent[EventType]): EmitterSubscription;
|
|
31
|
+
removeListener<EventType extends keyof IRtcEngineEvent>(eventType: EventType, listener: IRtcEngineEvent[EventType]): void;
|
|
32
|
+
removeAllListeners<EventType extends keyof IRtcEngineEvent>(eventType?: EventType): void;
|
|
33
|
+
getVersion(): SDKBuildInfo;
|
|
34
|
+
registerEventHandler(eventHandler: IRtcEngineEventHandler): boolean;
|
|
35
|
+
unregisterEventHandler(eventHandler: IRtcEngineEventHandler): boolean;
|
|
36
|
+
createMediaPlayer(): IMediaPlayer;
|
|
37
|
+
destroyMediaPlayer(mediaPlayer: IMediaPlayer): number;
|
|
38
|
+
createMediaRecorder(info: RecorderStreamInfo): IMediaRecorder;
|
|
39
|
+
destroyMediaRecorder(mediaRecorder: IMediaRecorder): number;
|
|
40
|
+
startDirectCdnStreaming(eventHandler: IDirectCdnStreamingEventHandler, publishUrl: string, options: DirectCdnStreamingMediaOptions): number;
|
|
41
|
+
registerMediaMetadataObserver(observer: IMetadataObserver, type: MetadataType): number;
|
|
42
|
+
unregisterMediaMetadataObserver(observer: IMetadataObserver, type: MetadataType): number;
|
|
43
|
+
protected getApiTypeFromJoinChannel(token: string, channelId: string, uid: number, options: ChannelMediaOptions): string;
|
|
44
|
+
protected getApiTypeFromLeaveChannel(options?: LeaveChannelOptions): string;
|
|
45
|
+
protected getApiTypeFromSetClientRole(role: ClientRoleType, options?: ClientRoleOptions): string;
|
|
46
|
+
protected getApiTypeFromStartEchoTest(config: EchoTestConfiguration): string;
|
|
47
|
+
protected getApiTypeFromStartPreview(sourceType?: VideoSourceType): string;
|
|
48
|
+
protected getApiTypeFromStopPreview(sourceType?: VideoSourceType): string;
|
|
49
|
+
protected getApiTypeFromStartAudioRecording(config: AudioRecordingConfiguration): string;
|
|
50
|
+
protected getApiTypeFromStartAudioMixing(filePath: string, loopback: boolean, cycle: number, startPos?: number): string;
|
|
51
|
+
protected getApiTypeFromEnableDualStreamMode(enabled: boolean, streamConfig?: SimulcastStreamConfig): string;
|
|
52
|
+
protected getApiTypeFromSetDualStreamMode(mode: SimulcastStreamMode, streamConfig?: SimulcastStreamConfig): string;
|
|
53
|
+
protected getApiTypeFromLeaveChannelEx(connection: RtcConnection, options?: LeaveChannelOptions): string;
|
|
54
|
+
protected getApiTypeFromCreateDataStream(config: DataStreamConfig): string;
|
|
55
|
+
protected getApiTypeFromAddVideoWatermark(watermarkUrl: string, options: WatermarkOptions): string;
|
|
56
|
+
protected getApiTypeFromJoinChannelWithUserAccount(token: string, channelId: string, userAccount: string, options?: ChannelMediaOptions): string;
|
|
57
|
+
protected getApiTypeFromCreateDataStreamEx(config: DataStreamConfig, connection: RtcConnection): string;
|
|
58
|
+
protected getApiTypeFromStartScreenCaptureBySourceType(sourceType: VideoSourceType, config: ScreenCaptureConfiguration): string;
|
|
59
|
+
protected getApiTypeFromStopScreenCaptureBySourceType(sourceType: VideoSourceType): string;
|
|
60
|
+
getAudioDeviceManager(): IAudioDeviceManager;
|
|
61
|
+
getVideoDeviceManager(): IVideoDeviceManager;
|
|
62
|
+
getMediaEngine(): IMediaEngine;
|
|
63
|
+
getMusicContentCenter(): IMusicContentCenter;
|
|
64
|
+
getLocalSpatialAudioEngine(): ILocalSpatialAudioEngine;
|
|
65
|
+
registerAudioEncodedFrameObserver(config: AudioEncodedFrameObserverConfig, observer: IAudioEncodedFrameObserver): number;
|
|
66
|
+
unregisterAudioEncodedFrameObserver(observer: IAudioEncodedFrameObserver): number;
|
|
67
|
+
registerAudioSpectrumObserver(observer: IAudioSpectrumObserver): number;
|
|
68
|
+
unregisterAudioSpectrumObserver(observer: IAudioSpectrumObserver): number;
|
|
69
|
+
getScreenCaptureSources(thumbSize: Size, iconSize: Size, includeScreen: boolean): ScreenCaptureSourceInfo[];
|
|
70
|
+
setupLocalVideo(canvas: VideoCanvas): number;
|
|
71
|
+
setupRemoteVideo(canvas: VideoCanvas): number;
|
|
72
|
+
setupRemoteVideoEx(canvas: VideoCanvas, connection: RtcConnection): number;
|
|
73
|
+
setLocalRenderMode(renderMode: RenderModeType, mirrorMode?: VideoMirrorModeType): number;
|
|
74
|
+
setRemoteRenderMode(uid: number, renderMode: RenderModeType, mirrorMode: VideoMirrorModeType): number;
|
|
75
|
+
setRemoteRenderModeEx(uid: number, renderMode: RenderModeType, mirrorMode: VideoMirrorModeType, connection: RtcConnection): number;
|
|
76
|
+
setLocalVideoMirrorMode(mirrorMode: VideoMirrorModeType): number;
|
|
77
|
+
destroyRendererByView(view: any): void;
|
|
78
|
+
destroyRendererByConfig(videoSourceType: VideoSourceType, channelId?: Channel, uid?: number): void;
|
|
79
|
+
}
|
|
80
|
+
//# sourceMappingURL=RtcEngineExInternal.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RtcEngineExInternal.d.ts","sourceRoot":"","sources":["../../../ts/Private/internal/RtcEngineExInternal.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,59 +1,60 @@
|
|
|
1
|
-
export const __esModule: boolean;
|
|
2
|
-
export default EventEmitter;
|
|
3
|
-
/**
|
|
4
|
-
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
5
|
-
*
|
|
6
|
-
* This source code is licensed under the MIT license found in the
|
|
7
|
-
* LICENSE file in the root directory of this source tree.
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* @format
|
|
11
|
-
*/
|
|
12
|
-
/**
|
|
13
|
-
* EventEmitter manages listeners and publishes events to them.
|
|
14
|
-
*
|
|
15
|
-
* EventEmitter accepts a single type parameter that defines the valid events
|
|
16
|
-
* and associated listener argument(s).
|
|
17
|
-
*
|
|
18
|
-
* @example
|
|
19
|
-
*
|
|
20
|
-
* const emitter = new EventEmitter<{
|
|
21
|
-
* success: [number, string],
|
|
22
|
-
* error: [Error],
|
|
23
|
-
* }>();
|
|
24
|
-
*
|
|
25
|
-
* emitter.on('success', (statusCode, responseText) => {...});
|
|
26
|
-
* emitter.emit('success', 200, '...');
|
|
27
|
-
*
|
|
28
|
-
* emitter.on('error', error => {...});
|
|
29
|
-
* emitter.emit('error', new Error('Resource not found'));
|
|
30
|
-
*
|
|
31
|
-
*/
|
|
32
|
-
declare class EventEmitter {
|
|
33
|
-
/**
|
|
34
|
-
* Registers a listener that is called when the supplied event is emitted.
|
|
35
|
-
* Returns a subscription that has a `remove` method to undo registration.
|
|
36
|
-
*/
|
|
37
|
-
addListener(eventType: any, listener: any, context: any): {
|
|
38
|
-
context: any;
|
|
39
|
-
listener: any;
|
|
40
|
-
remove(): void;
|
|
41
|
-
};
|
|
42
|
-
/**
|
|
43
|
-
* Emits the supplied event. Additional arguments supplied to `emit` will be
|
|
44
|
-
* passed through to each of the registered listeners.
|
|
45
|
-
*
|
|
46
|
-
* If a listener modifies the listeners registered for the same event, those
|
|
47
|
-
* changes will not be reflected in the current invocation of `emit`.
|
|
48
|
-
*/
|
|
49
|
-
emit(eventType: any, ...args: any[]): void;
|
|
50
|
-
/**
|
|
51
|
-
* Removes all registered listeners.
|
|
52
|
-
*/
|
|
53
|
-
removeAllListeners(eventType: any): void;
|
|
54
|
-
_registry: {} | undefined;
|
|
55
|
-
/**
|
|
56
|
-
* Returns the number of registered listeners for the supplied event.
|
|
57
|
-
*/
|
|
58
|
-
listenerCount(eventType: any): any;
|
|
59
|
-
}
|
|
1
|
+
export const __esModule: boolean;
|
|
2
|
+
export default EventEmitter;
|
|
3
|
+
/**
|
|
4
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
5
|
+
*
|
|
6
|
+
* This source code is licensed under the MIT license found in the
|
|
7
|
+
* LICENSE file in the root directory of this source tree.
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* @format
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
* EventEmitter manages listeners and publishes events to them.
|
|
14
|
+
*
|
|
15
|
+
* EventEmitter accepts a single type parameter that defines the valid events
|
|
16
|
+
* and associated listener argument(s).
|
|
17
|
+
*
|
|
18
|
+
* @example
|
|
19
|
+
*
|
|
20
|
+
* const emitter = new EventEmitter<{
|
|
21
|
+
* success: [number, string],
|
|
22
|
+
* error: [Error],
|
|
23
|
+
* }>();
|
|
24
|
+
*
|
|
25
|
+
* emitter.on('success', (statusCode, responseText) => {...});
|
|
26
|
+
* emitter.emit('success', 200, '...');
|
|
27
|
+
*
|
|
28
|
+
* emitter.on('error', error => {...});
|
|
29
|
+
* emitter.emit('error', new Error('Resource not found'));
|
|
30
|
+
*
|
|
31
|
+
*/
|
|
32
|
+
declare class EventEmitter {
|
|
33
|
+
/**
|
|
34
|
+
* Registers a listener that is called when the supplied event is emitted.
|
|
35
|
+
* Returns a subscription that has a `remove` method to undo registration.
|
|
36
|
+
*/
|
|
37
|
+
addListener(eventType: any, listener: any, context: any): {
|
|
38
|
+
context: any;
|
|
39
|
+
listener: any;
|
|
40
|
+
remove(): void;
|
|
41
|
+
};
|
|
42
|
+
/**
|
|
43
|
+
* Emits the supplied event. Additional arguments supplied to `emit` will be
|
|
44
|
+
* passed through to each of the registered listeners.
|
|
45
|
+
*
|
|
46
|
+
* If a listener modifies the listeners registered for the same event, those
|
|
47
|
+
* changes will not be reflected in the current invocation of `emit`.
|
|
48
|
+
*/
|
|
49
|
+
emit(eventType: any, ...args: any[]): void;
|
|
50
|
+
/**
|
|
51
|
+
* Removes all registered listeners.
|
|
52
|
+
*/
|
|
53
|
+
removeAllListeners(eventType: any): void;
|
|
54
|
+
_registry: {} | undefined;
|
|
55
|
+
/**
|
|
56
|
+
* Returns the number of registered listeners for the supplied event.
|
|
57
|
+
*/
|
|
58
|
+
listenerCount(eventType: any): any;
|
|
59
|
+
}
|
|
60
|
+
//# sourceMappingURL=EventEmitter.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"EventEmitter.d.ts","sourceRoot":"","sources":["../../../../ts/Private/internal/emitter/EventEmitter.js"],"names":[],"mappings":";;AAqBA;;;;;;;;GAQG;AAEH;;;;;;;;;;;;;;;;;;;GAmBG;AACH;IAKE;;;OAGG;IACH;;;;MAYC;IACD;;;;;;OAMG;IAEH,2CAQC;IACD;;OAEG;IAEH,yCAMC;IAJG,0BAAmB;IAKvB;;OAEG;IAEH,mCAGC;CACF"}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This module was automatically generated by `ts-interface-builder`
|
|
3
|
-
*/
|
|
4
|
-
import * as t from "ts-interface-checker";
|
|
5
|
-
export declare const IAudioEncodedFrameObserver: t.TIface;
|
|
6
|
-
declare const exportedTypeSuite: t.ITypeSuite;
|
|
7
|
-
export default exportedTypeSuite;
|
|
1
|
+
/**
|
|
2
|
+
* This module was automatically generated by `ts-interface-builder`
|
|
3
|
+
*/
|
|
4
|
+
import * as t from "ts-interface-checker";
|
|
5
|
+
export declare const IAudioEncodedFrameObserver: t.TIface;
|
|
6
|
+
declare const exportedTypeSuite: t.ITypeSuite;
|
|
7
|
+
export default exportedTypeSuite;
|
|
8
|
+
//# sourceMappingURL=AgoraBase-ti.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AgoraBase-ti.d.ts","sourceRoot":"","sources":["../../../ts/Private/ti/AgoraBase-ti.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,KAAK,CAAC,MAAM,sBAAsB,CAAC;AAG1C,eAAO,MAAM,0BAA0B,UAIrC,CAAC;AAEH,QAAA,MAAM,iBAAiB,EAAE,CAAC,CAAC,UAE1B,CAAC;AACF,eAAe,iBAAiB,CAAC"}
|
|
@@ -1,12 +1,14 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This module was automatically generated by `ts-interface-builder`
|
|
3
|
-
*/
|
|
4
|
-
import * as t from "ts-interface-checker";
|
|
5
|
-
export declare const
|
|
6
|
-
export declare const
|
|
7
|
-
export declare const
|
|
8
|
-
export declare const
|
|
9
|
-
export declare const
|
|
10
|
-
export declare const
|
|
11
|
-
declare const
|
|
12
|
-
|
|
1
|
+
/**
|
|
2
|
+
* This module was automatically generated by `ts-interface-builder`
|
|
3
|
+
*/
|
|
4
|
+
import * as t from "ts-interface-checker";
|
|
5
|
+
export declare const IAudioPcmFrameSink: t.TIface;
|
|
6
|
+
export declare const IAudioFrameObserverBase: t.TIface;
|
|
7
|
+
export declare const IAudioFrameObserver: t.TIface;
|
|
8
|
+
export declare const IAudioSpectrumObserver: t.TIface;
|
|
9
|
+
export declare const IVideoEncodedFrameObserver: t.TIface;
|
|
10
|
+
export declare const IVideoFrameObserver: t.TIface;
|
|
11
|
+
export declare const IMediaRecorderObserver: t.TIface;
|
|
12
|
+
declare const exportedTypeSuite: t.ITypeSuite;
|
|
13
|
+
export default exportedTypeSuite;
|
|
14
|
+
//# sourceMappingURL=AgoraMediaBase-ti.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AgoraMediaBase-ti.d.ts","sourceRoot":"","sources":["../../../ts/Private/ti/AgoraMediaBase-ti.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,KAAK,CAAC,MAAM,sBAAsB,CAAC;AAG1C,eAAO,MAAM,kBAAkB,UAE7B,CAAC;AAEH,eAAO,MAAM,uBAAuB,UAKlC,CAAC;AAEH,eAAO,MAAM,mBAAmB,UAE9B,CAAC;AAEH,eAAO,MAAM,sBAAsB,UAGjC,CAAC;AAEH,eAAO,MAAM,0BAA0B,UAErC,CAAC;AAEH,eAAO,MAAM,mBAAmB,UAM9B,CAAC;AAEH,eAAO,MAAM,sBAAsB,UAGjC,CAAC;AAEH,QAAA,MAAM,iBAAiB,EAAE,CAAC,CAAC,UAQ1B,CAAC;AACF,eAAe,iBAAiB,CAAC"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This module was automatically generated by `ts-interface-builder`
|
|
3
|
-
*/
|
|
4
|
-
import * as t from "ts-interface-checker";
|
|
5
|
-
declare const exportedTypeSuite: t.ITypeSuite;
|
|
6
|
-
export default exportedTypeSuite;
|
|
1
|
+
/**
|
|
2
|
+
* This module was automatically generated by `ts-interface-builder`
|
|
3
|
+
*/
|
|
4
|
+
import * as t from "ts-interface-checker";
|
|
5
|
+
declare const exportedTypeSuite: t.ITypeSuite;
|
|
6
|
+
export default exportedTypeSuite;
|
|
7
|
+
//# sourceMappingURL=AgoraMediaPlayerTypes-ti.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AgoraMediaPlayerTypes-ti.d.ts","sourceRoot":"","sources":["../../../ts/Private/ti/AgoraMediaPlayerTypes-ti.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,KAAK,CAAC,MAAM,sBAAsB,CAAC;AAK1C,QAAA,MAAM,iBAAiB,EAAE,CAAC,CAAC,UAC1B,CAAC;AACF,eAAe,iBAAiB,CAAC"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This module was automatically generated by `ts-interface-builder`
|
|
3
|
-
*/
|
|
4
|
-
import * as t from "ts-interface-checker";
|
|
5
|
-
declare const exportedTypeSuite: t.ITypeSuite;
|
|
6
|
-
export default exportedTypeSuite;
|
|
1
|
+
/**
|
|
2
|
+
* This module was automatically generated by `ts-interface-builder`
|
|
3
|
+
*/
|
|
4
|
+
import * as t from "ts-interface-checker";
|
|
5
|
+
declare const exportedTypeSuite: t.ITypeSuite;
|
|
6
|
+
export default exportedTypeSuite;
|
|
7
|
+
//# sourceMappingURL=IAgoraLog-ti.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IAgoraLog-ti.d.ts","sourceRoot":"","sources":["../../../ts/Private/ti/IAgoraLog-ti.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,KAAK,CAAC,MAAM,sBAAsB,CAAC;AAK1C,QAAA,MAAM,iBAAiB,EAAE,CAAC,CAAC,UAC1B,CAAC;AACF,eAAe,iBAAiB,CAAC"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This module was automatically generated by `ts-interface-builder`
|
|
3
|
-
*/
|
|
4
|
-
import * as t from "ts-interface-checker";
|
|
5
|
-
declare const exportedTypeSuite: t.ITypeSuite;
|
|
6
|
-
export default exportedTypeSuite;
|
|
1
|
+
/**
|
|
2
|
+
* This module was automatically generated by `ts-interface-builder`
|
|
3
|
+
*/
|
|
4
|
+
import * as t from "ts-interface-checker";
|
|
5
|
+
declare const exportedTypeSuite: t.ITypeSuite;
|
|
6
|
+
export default exportedTypeSuite;
|
|
7
|
+
//# sourceMappingURL=IAgoraMediaEngine-ti.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IAgoraMediaEngine-ti.d.ts","sourceRoot":"","sources":["../../../ts/Private/ti/IAgoraMediaEngine-ti.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,KAAK,CAAC,MAAM,sBAAsB,CAAC;AAK1C,QAAA,MAAM,iBAAiB,EAAE,CAAC,CAAC,UAC1B,CAAC;AACF,eAAe,iBAAiB,CAAC"}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This module was automatically generated by `ts-interface-builder`
|
|
3
|
-
*/
|
|
4
|
-
import * as t from "ts-interface-checker";
|
|
5
|
-
export declare const
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
1
|
+
/**
|
|
2
|
+
* This module was automatically generated by `ts-interface-builder`
|
|
3
|
+
*/
|
|
4
|
+
import * as t from "ts-interface-checker";
|
|
5
|
+
export declare const IMediaPlayerVideoFrameObserver: t.TIface;
|
|
6
|
+
declare const exportedTypeSuite: t.ITypeSuite;
|
|
7
|
+
export default exportedTypeSuite;
|
|
8
|
+
//# sourceMappingURL=IAgoraMediaPlayer-ti.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IAgoraMediaPlayer-ti.d.ts","sourceRoot":"","sources":["../../../ts/Private/ti/IAgoraMediaPlayer-ti.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,KAAK,CAAC,MAAM,sBAAsB,CAAC;AAG1C,eAAO,MAAM,8BAA8B,UAEzC,CAAC;AAEH,QAAA,MAAM,iBAAiB,EAAE,CAAC,CAAC,UAE1B,CAAC;AACF,eAAe,iBAAiB,CAAC"}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This module was automatically generated by `ts-interface-builder`
|
|
3
|
-
*/
|
|
4
|
-
import * as t from "ts-interface-checker";
|
|
5
|
-
export declare const IMediaPlayerSourceObserver: t.TIface;
|
|
6
|
-
declare const exportedTypeSuite: t.ITypeSuite;
|
|
7
|
-
export default exportedTypeSuite;
|
|
1
|
+
/**
|
|
2
|
+
* This module was automatically generated by `ts-interface-builder`
|
|
3
|
+
*/
|
|
4
|
+
import * as t from "ts-interface-checker";
|
|
5
|
+
export declare const IMediaPlayerSourceObserver: t.TIface;
|
|
6
|
+
declare const exportedTypeSuite: t.ITypeSuite;
|
|
7
|
+
export default exportedTypeSuite;
|
|
8
|
+
//# sourceMappingURL=IAgoraMediaPlayerSource-ti.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IAgoraMediaPlayerSource-ti.d.ts","sourceRoot":"","sources":["../../../ts/Private/ti/IAgoraMediaPlayerSource-ti.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,KAAK,CAAC,MAAM,sBAAsB,CAAC;AAG1C,eAAO,MAAM,0BAA0B,UAYrC,CAAC;AAEH,QAAA,MAAM,iBAAiB,EAAE,CAAC,CAAC,UAE1B,CAAC;AACF,eAAe,iBAAiB,CAAC"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This module was automatically generated by `ts-interface-builder`
|
|
3
|
-
*/
|
|
4
|
-
import * as t from "ts-interface-checker";
|
|
5
|
-
declare const exportedTypeSuite: t.ITypeSuite;
|
|
6
|
-
export default exportedTypeSuite;
|
|
1
|
+
/**
|
|
2
|
+
* This module was automatically generated by `ts-interface-builder`
|
|
3
|
+
*/
|
|
4
|
+
import * as t from "ts-interface-checker";
|
|
5
|
+
declare const exportedTypeSuite: t.ITypeSuite;
|
|
6
|
+
export default exportedTypeSuite;
|
|
7
|
+
//# sourceMappingURL=IAgoraMediaRecorder-ti.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IAgoraMediaRecorder-ti.d.ts","sourceRoot":"","sources":["../../../ts/Private/ti/IAgoraMediaRecorder-ti.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,KAAK,CAAC,MAAM,sBAAsB,CAAC;AAK1C,QAAA,MAAM,iBAAiB,EAAE,CAAC,CAAC,UAC1B,CAAC;AACF,eAAe,iBAAiB,CAAC"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This module was automatically generated by `ts-interface-builder`
|
|
3
|
-
*/
|
|
4
|
-
import * as t from "ts-interface-checker";
|
|
5
|
-
declare const exportedTypeSuite: t.ITypeSuite;
|
|
6
|
-
export default exportedTypeSuite;
|
|
1
|
+
/**
|
|
2
|
+
* This module was automatically generated by `ts-interface-builder`
|
|
3
|
+
*/
|
|
4
|
+
import * as t from "ts-interface-checker";
|
|
5
|
+
declare const exportedTypeSuite: t.ITypeSuite;
|
|
6
|
+
export default exportedTypeSuite;
|
|
7
|
+
//# sourceMappingURL=IAgoraMediaStreamingSource-ti.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IAgoraMediaStreamingSource-ti.d.ts","sourceRoot":"","sources":["../../../ts/Private/ti/IAgoraMediaStreamingSource-ti.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,KAAK,CAAC,MAAM,sBAAsB,CAAC;AAK1C,QAAA,MAAM,iBAAiB,EAAE,CAAC,CAAC,UAC1B,CAAC;AACF,eAAe,iBAAiB,CAAC"}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This module was automatically generated by `ts-interface-builder`
|
|
3
|
-
*/
|
|
4
|
-
import * as t from "ts-interface-checker";
|
|
5
|
-
export declare const IMusicContentCenterEventHandler: t.TIface;
|
|
6
|
-
declare const exportedTypeSuite: t.ITypeSuite;
|
|
7
|
-
export default exportedTypeSuite;
|
|
1
|
+
/**
|
|
2
|
+
* This module was automatically generated by `ts-interface-builder`
|
|
3
|
+
*/
|
|
4
|
+
import * as t from "ts-interface-checker";
|
|
5
|
+
export declare const IMusicContentCenterEventHandler: t.TIface;
|
|
6
|
+
declare const exportedTypeSuite: t.ITypeSuite;
|
|
7
|
+
export default exportedTypeSuite;
|
|
8
|
+
//# sourceMappingURL=IAgoraMusicContentCenter-ti.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IAgoraMusicContentCenter-ti.d.ts","sourceRoot":"","sources":["../../../ts/Private/ti/IAgoraMusicContentCenter-ti.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,KAAK,CAAC,MAAM,sBAAsB,CAAC;AAG1C,eAAO,MAAM,+BAA+B,UAK1C,CAAC;AAEH,QAAA,MAAM,iBAAiB,EAAE,CAAC,CAAC,UAE1B,CAAC;AACF,eAAe,iBAAiB,CAAC"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This module was automatically generated by `ts-interface-builder`
|
|
3
|
-
*/
|
|
4
|
-
import * as t from "ts-interface-checker";
|
|
5
|
-
declare const exportedTypeSuite: t.ITypeSuite;
|
|
6
|
-
export default exportedTypeSuite;
|
|
1
|
+
/**
|
|
2
|
+
* This module was automatically generated by `ts-interface-builder`
|
|
3
|
+
*/
|
|
4
|
+
import * as t from "ts-interface-checker";
|
|
5
|
+
declare const exportedTypeSuite: t.ITypeSuite;
|
|
6
|
+
export default exportedTypeSuite;
|
|
7
|
+
//# sourceMappingURL=IAgoraRhythmPlayer-ti.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IAgoraRhythmPlayer-ti.d.ts","sourceRoot":"","sources":["../../../ts/Private/ti/IAgoraRhythmPlayer-ti.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,KAAK,CAAC,MAAM,sBAAsB,CAAC;AAK1C,QAAA,MAAM,iBAAiB,EAAE,CAAC,CAAC,UAC1B,CAAC;AACF,eAAe,iBAAiB,CAAC"}
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This module was automatically generated by `ts-interface-builder`
|
|
3
|
-
*/
|
|
4
|
-
import * as t from "ts-interface-checker";
|
|
5
|
-
export declare const IRtcEngineEventHandler: t.TIface;
|
|
6
|
-
export declare const IMetadataObserver: t.TIface;
|
|
7
|
-
export declare const IDirectCdnStreamingEventHandler: t.TIface;
|
|
8
|
-
declare const exportedTypeSuite: t.ITypeSuite;
|
|
9
|
-
export default exportedTypeSuite;
|
|
1
|
+
/**
|
|
2
|
+
* This module was automatically generated by `ts-interface-builder`
|
|
3
|
+
*/
|
|
4
|
+
import * as t from "ts-interface-checker";
|
|
5
|
+
export declare const IRtcEngineEventHandler: t.TIface;
|
|
6
|
+
export declare const IMetadataObserver: t.TIface;
|
|
7
|
+
export declare const IDirectCdnStreamingEventHandler: t.TIface;
|
|
8
|
+
declare const exportedTypeSuite: t.ITypeSuite;
|
|
9
|
+
export default exportedTypeSuite;
|
|
10
|
+
//# sourceMappingURL=IAgoraRtcEngine-ti.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IAgoraRtcEngine-ti.d.ts","sourceRoot":"","sources":["../../../ts/Private/ti/IAgoraRtcEngine-ti.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,KAAK,CAAC,MAAM,sBAAsB,CAAC;AAG1C,eAAO,MAAM,sBAAsB,UA8FjC,CAAC;AAEH,eAAO,MAAM,iBAAiB,UAE5B,CAAC;AAEH,eAAO,MAAM,+BAA+B,UAG1C,CAAC;AAEH,QAAA,MAAM,iBAAiB,EAAE,CAAC,CAAC,UAI1B,CAAC;AACF,eAAe,iBAAiB,CAAC"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This module was automatically generated by `ts-interface-builder`
|
|
3
|
-
*/
|
|
4
|
-
import * as t from "ts-interface-checker";
|
|
5
|
-
declare const exportedTypeSuite: t.ITypeSuite;
|
|
6
|
-
export default exportedTypeSuite;
|
|
1
|
+
/**
|
|
2
|
+
* This module was automatically generated by `ts-interface-builder`
|
|
3
|
+
*/
|
|
4
|
+
import * as t from "ts-interface-checker";
|
|
5
|
+
declare const exportedTypeSuite: t.ITypeSuite;
|
|
6
|
+
export default exportedTypeSuite;
|
|
7
|
+
//# sourceMappingURL=IAgoraRtcEngineEx-ti.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IAgoraRtcEngineEx-ti.d.ts","sourceRoot":"","sources":["../../../ts/Private/ti/IAgoraRtcEngineEx-ti.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,KAAK,CAAC,MAAM,sBAAsB,CAAC;AAK1C,QAAA,MAAM,iBAAiB,EAAE,CAAC,CAAC,UAC1B,CAAC;AACF,eAAe,iBAAiB,CAAC"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This module was automatically generated by `ts-interface-builder`
|
|
3
|
-
*/
|
|
4
|
-
import * as t from "ts-interface-checker";
|
|
5
|
-
declare const exportedTypeSuite: t.ITypeSuite;
|
|
6
|
-
export default exportedTypeSuite;
|
|
1
|
+
/**
|
|
2
|
+
* This module was automatically generated by `ts-interface-builder`
|
|
3
|
+
*/
|
|
4
|
+
import * as t from "ts-interface-checker";
|
|
5
|
+
declare const exportedTypeSuite: t.ITypeSuite;
|
|
6
|
+
export default exportedTypeSuite;
|
|
7
|
+
//# sourceMappingURL=IAgoraSpatialAudio-ti.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IAgoraSpatialAudio-ti.d.ts","sourceRoot":"","sources":["../../../ts/Private/ti/IAgoraSpatialAudio-ti.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,KAAK,CAAC,MAAM,sBAAsB,CAAC;AAK1C,QAAA,MAAM,iBAAiB,EAAE,CAAC,CAAC,UAC1B,CAAC;AACF,eAAe,iBAAiB,CAAC"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This module was automatically generated by `ts-interface-builder`
|
|
3
|
-
*/
|
|
4
|
-
import * as t from "ts-interface-checker";
|
|
5
|
-
declare const exportedTypeSuite: t.ITypeSuite;
|
|
6
|
-
export default exportedTypeSuite;
|
|
1
|
+
/**
|
|
2
|
+
* This module was automatically generated by `ts-interface-builder`
|
|
3
|
+
*/
|
|
4
|
+
import * as t from "ts-interface-checker";
|
|
5
|
+
declare const exportedTypeSuite: t.ITypeSuite;
|
|
6
|
+
export default exportedTypeSuite;
|
|
7
|
+
//# sourceMappingURL=IAudioDeviceManager-ti.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IAudioDeviceManager-ti.d.ts","sourceRoot":"","sources":["../../../ts/Private/ti/IAudioDeviceManager-ti.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,KAAK,CAAC,MAAM,sBAAsB,CAAC;AAK1C,QAAA,MAAM,iBAAiB,EAAE,CAAC,CAAC,UAC1B,CAAC;AACF,eAAe,iBAAiB,CAAC"}
|