@swarmcloud/hls 2.11.4
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/dist/clappr-p2p-plugin.min.js +1 -0
- package/dist/hls-proxy.js +1 -0
- package/dist/hls.light.min.js +1 -0
- package/dist/hls.min.d.ts +14 -0
- package/dist/hls.min.js +1 -0
- package/dist/hlsjs-p2p-engine.min.js +1 -0
- package/dist/p2p-engine.min.d.ts +123 -0
- package/dist/p2p-engine.min.js +1 -0
- package/dist/sw-p2p-engine.min.js +1 -0
- package/package.json +33 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import Hlsjs from 'hls.js'
|
|
2
|
+
import P2pEngineHls from "./p2p-engine.min";
|
|
3
|
+
|
|
4
|
+
export declare class SWHlsjs extends Hlsjs {
|
|
5
|
+
static engineVersion: string;
|
|
6
|
+
static protocolVersion: string;
|
|
7
|
+
static WEBRTC_SUPPORT: boolean;
|
|
8
|
+
constructor(config?: any);
|
|
9
|
+
readonly p2pEngine: P2pEngineHls;
|
|
10
|
+
enableP2P(): void;
|
|
11
|
+
disableP2P(): void;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
export default SWHlsjs
|