@vkontakte/videoplayer-core 2.0.69 → 2.0.71
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/es2015.cjs.d.ts +2 -2
- package/es2015.cjs.js +4 -4
- package/es2015.esm.d.ts +2 -2
- package/es2015.esm.js +4 -4
- package/es2018.cjs.d.ts +2 -2
- package/es2018.cjs.js +4 -4
- package/es2018.esm.d.ts +2 -2
- package/es2018.esm.js +4 -4
- package/esnext.cjs.js +4 -4
- package/esnext.esm.d.ts +2 -2
- package/esnext.esm.js +4 -4
- package/index.d.ts +2 -2
- package/package.json +1 -1
- package/packages/core/src/providers/WebRTCLiveProvider/interface/WebRTCLiveClientOptions.d.ts +9 -0
- package/packages/core/src/providers/types.d.ts +2 -1
- package/player/Player.d.ts +3 -1
- package/player/types.d.ts +9 -1
- package/providers/DashLiveProvider/utils/LiveDashPlayer.d.ts +135 -0
- package/providers/WebRTCLiveProvider/WebRTCLiveClient.d.ts +188 -0
- package/providers/WebRTCLiveProvider/WebRTCLiveProvider.d.ts +60 -0
- package/providers/utils/observableVideo.d.ts +2 -1
- package/providers/utils/syncDesiredState.d.ts +2 -1
- package/utils/buffer/isPositionBuffered.d.ts +3 -0
- package/utils/tuningConfig.d.ts +3 -0
package/es2015.cjs.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { VideoFormat, IMpegSource, IDashSource, IHLSSource, IDashURLSource, IHLSLiveSource, StartStatus, ISeekRequest, URLSource, RawSource, URLSourceWithSeek } from "./player/types";
|
|
2
2
|
import Player from "./player/Player";
|
|
3
|
-
import { IPlayer, PlaybackState, IPlayerInfo, IPlayerEvents, IConfig, ISources, ICueSettings, ChromecastState, HttpConnectionType, IExternalTextTrack, ITextTrack } from "./player/types";
|
|
3
|
+
import { IPlayer, PlaybackState, IPlayerInfo, IPlayerEvents, IConfig, ISources, ICueSettings, ChromecastState, HttpConnectionType, IExternalTextTrack, ITextTrack, PlaybackRate } from "./player/types";
|
|
4
4
|
import { VideoQuality, ExactVideoQuality } from "./utils/quality/types";
|
|
5
5
|
import type { ISubscription, IUnsubscriber, IEmitter, IObservable, IValueObservable, IValue, IOperator, IListener, ILogEntry, IRange } from '@vkontakte/videoplayer-shared';
|
|
6
6
|
import { Subscription, Observable, Subject, ValueSubject } from '@vkontakte/videoplayer-shared';
|
|
@@ -8,4 +8,4 @@ import { Subscription, Observable, Subject, ValueSubject } from '@vkontakte/vide
|
|
|
8
8
|
* Версия sdk
|
|
9
9
|
*/
|
|
10
10
|
declare const SDK_VERSION: string;
|
|
11
|
-
export { Player, IPlayer, PlaybackState, IPlayerInfo, IPlayerEvents, IConfig, ILogEntry, ISources, IExternalTextTrack, ITextTrack, ChromecastState, HttpConnectionType, Subscription, ISubscription, IUnsubscriber, IObservable, IEmitter, IValueObservable, IValue, IOperator, IListener, VideoFormat, IMpegSource, IDashSource, IDashURLSource, IHLSSource, IHLSLiveSource, URLSource, RawSource, URLSourceWithSeek, VideoQuality, ExactVideoQuality, Observable, Subject, ValueSubject, IRange, StartStatus, ISeekRequest, ICueSettings, SDK_VERSION, };
|
|
11
|
+
export { Player, IPlayer, PlaybackState, IPlayerInfo, IPlayerEvents, IConfig, ILogEntry, ISources, IExternalTextTrack, ITextTrack, ChromecastState, HttpConnectionType, Subscription, ISubscription, IUnsubscriber, IObservable, IEmitter, IValueObservable, IValue, IOperator, IListener, VideoFormat, IMpegSource, IDashSource, IDashURLSource, IHLSSource, IHLSLiveSource, URLSource, RawSource, URLSourceWithSeek, VideoQuality, ExactVideoQuality, Observable, Subject, ValueSubject, IRange, StartStatus, ISeekRequest, ICueSettings, SDK_VERSION, PlaybackRate, };
|