@micrio/client 5.1.32 → 5.1.33

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 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.32";
3
+ export const VERSION = "5.1.33";
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;
@@ -2271,6 +2271,29 @@ declare module '@micrio/client' {
2271
2271
  */
2272
2272
  constructor(micrio: HTMLMicrioElement);
2273
2273
  }
2274
+ /** In-WebGL rendered embedded videos, used in <Embed /> */
2275
+ export class GLEmbedVideo {
2276
+ private wasm;
2277
+ private image;
2278
+ private embed;
2279
+ private paused;
2280
+ private moved;
2281
+ private ism3u;
2282
+ private hlsPlayer;
2283
+ private usVid;
2284
+ private vidRepeatTo;
2285
+ private placeTo;
2286
+ private autoplay;
2287
+ _vid: HTMLVideoElement | undefined;
2288
+ isMounted: boolean;
2289
+ constructor(wasm: Wasm, image: MicrioImage, embed: Models.ImageData.Embed, paused: boolean, moved: () => void);
2290
+ unmount(): void;
2291
+ private setPlaying;
2292
+ private load;
2293
+ private events;
2294
+ private hook;
2295
+ private unhook;
2296
+ }
2274
2297
  }declare module "svelte/store" {
2275
2298
  /** Callback to inform of a value updates.
2276
2299
  */