@micrio/client 5.1.4 → 5.1.5
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/micrio.min.d.ts +5 -1
- package/micrio.min.js +2 -2
- package/package.json +1 -1
package/micrio.min.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
declare module '@micrio/client' {
|
|
2
2
|
import type { Readable, Writable } from 'svelte/store';
|
|
3
|
-
export const VERSION = "5.1.
|
|
3
|
+
export const VERSION = "5.1.5";
|
|
4
4
|
export type PREDEFINED = [string, Models.ImageInfo.ImageInfo, Models.ImageData.ImageData | undefined];
|
|
5
5
|
export const isFetching: (uri: string) => boolean;
|
|
6
6
|
export const getLocalData: (id: string) => PREDEFINED | undefined;
|
|
@@ -20,6 +20,10 @@ declare module '@micrio/client' {
|
|
|
20
20
|
v: Models.Spaces.DirectionVector;
|
|
21
21
|
vN: Models.Spaces.DirectionVector;
|
|
22
22
|
} | undefined;
|
|
23
|
+
/** Feature detection for native HLS video support
|
|
24
|
+
* @private
|
|
25
|
+
*/
|
|
26
|
+
export const hasNativeHLS: (video?: HTMLMediaElement) => boolean;
|
|
23
27
|
export namespace Enums {
|
|
24
28
|
namespace Grid {
|
|
25
29
|
/** External grid action types */
|