lemon-mse 0.1.2 → 0.1.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lemon-mse",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "build": "unbuild"
package/src/hls.ts CHANGED
@@ -1,2 +1,8 @@
1
- // @ts-ignore
2
- export { default as Hls, default } from "hls.js/dist/hls.light.mjs";
1
+
2
+ declare class Hls extends (await import('hls.js')).default { }
3
+ // @ts-ignore
4
+ import Hls from "hls.js/dist/hls.light.js";
5
+
6
+ export { Hls, Hls as default }
7
+
8
+
package/src/xg-flv.ts CHANGED
@@ -1 +1,2 @@
1
- export { Flv, Flv as default } from 'xgplayer-flv';
1
+ export { Flv, Flv as default } from 'xgplayer-flv';
2
+