@vkontakte/videoplayer-statistics 1.0.109-dev.eb086bcd9.0 → 1.0.110-dev.0bbcbb01d.0
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 +4 -4
- package/es2015.esm.js +4 -4
- package/esnext.cjs +4 -4
- package/esnext.esm.js +4 -4
- package/evergreen.esm.js +4 -4
- package/package.json +3 -3
- package/types/oneStat/ApiTransport.d.ts +1 -0
- package/types/oneStat/config.d.ts +2 -0
- package/types/oneStat/env.d.ts +2 -0
- package/types/thinOneStat/ApiTransport.d.ts +1 -0
- package/types/thinOneStat/ThinOneStat.d.ts +24 -2
- package/types/thinOneStat/config.d.ts +1 -0
- package/types/thinOneStat/env.d.ts +1 -0
- package/types/thinOneStat/utils/mappers.d.ts +1 -0
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { ISources } from "@vkontakte/videoplayer-core";
|
|
2
2
|
import { HttpConnectionType as CoreConnectionType, Surface, VideoFormat, VideoQuality } from "@vkontakte/videoplayer-core";
|
|
3
3
|
import { ConnectionType as StatisticsConnectionType, ContentType, Mode, Quality, StreamingProfile, Visibility } from "../values";
|
|
4
|
+
export declare const errorTrace: (data: unknown) => string | undefined;
|
|
4
5
|
export declare const connectionType: (coreType?: CoreConnectionType) => StatisticsConnectionType | undefined;
|
|
5
6
|
export declare const contentType: (format?: VideoFormat) => ContentType | undefined;
|
|
6
7
|
export declare const quality: (coreQuality?: VideoQuality) => Quality | undefined;
|