@dcl-regenesislabs/bevy-explorer-web 0.1.0-23849787931.commit-681973f → 0.1.0-23913069720.commit-88c0bb6

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/.env CHANGED
@@ -1 +1 @@
1
- PUBLIC_URL="https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-23849787931.commit-681973f"
1
+ PUBLIC_URL="https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-23913069720.commit-88c0bb6"
package/engine.js CHANGED
@@ -336,4 +336,6 @@ export function start() {
336
336
  });
337
337
  };
338
338
  setTimeout(showCanvas, 200);
339
+
340
+ document.getElementById("mygame-canvas").started = true;
339
341
  }
package/index.html CHANGED
@@ -411,7 +411,7 @@
411
411
  }
412
412
  </style>
413
413
  <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" rel="stylesheet">
414
- <script>window.PUBLIC_URL = "https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-23849787931.commit-681973f";</script>
414
+ <script>window.PUBLIC_URL = "https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-23913069720.commit-88c0bb6";</script>
415
415
  </head>
416
416
  <body>
417
417
  <div id="header" class="container">
package/main.js CHANGED
@@ -83,3 +83,19 @@ initEngine()
83
83
  initButton.style.display = 'block';
84
84
  initButton.textContent = "Load Failed";
85
85
  });
86
+
87
+ window.addEventListener("keydown", (event) => {
88
+ if (event.key == "F11" || event.code == "F11") {
89
+ event.preventDefault();
90
+ const canvas = window.document.getElementById("mygame-canvas");
91
+ if (canvas && canvas.started) {
92
+ if (document.fullscreenElement) {
93
+ document.exitFullscreen();
94
+ } else {
95
+ canvas.requestFullscreen();
96
+ }
97
+ } else {
98
+ console.log("Fullscreen is unavailable on the starting page.");
99
+ }
100
+ }
101
+ });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dcl-regenesislabs/bevy-explorer-web",
3
- "version": "0.1.0-23849787931.commit-681973f",
3
+ "version": "0.1.0-23913069720.commit-88c0bb6",
4
4
  "scripts": {
5
5
  "postinstall": "node ./scripts/prebuild.js"
6
6
  },
@@ -8,6 +8,6 @@
8
8
  "type": "git",
9
9
  "url": "git+https://github.com/decentraland/bevy-explorer.git"
10
10
  },
11
- "homepage": "https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-23849787931.commit-681973f",
12
- "commit": "681973ff3c074a9d342b30166ad5d0b4a32aca20"
11
+ "homepage": "https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-23913069720.commit-88c0bb6",
12
+ "commit": "88c0bb6baa364417af6c705f0dd1a543262b7311"
13
13
  }
package/pkg/manifest.json CHANGED
@@ -1 +1 @@
1
- {"wasmSize":118276949}
1
+ {"wasmSize":118285964}
@@ -434,7 +434,7 @@ export interface InitOutput {
434
434
  readonly wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__wasm_bindgen_6c0c3bb491d8811b___JsValue____Output________3_: (a: number, b: number) => void;
435
435
  readonly wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__wasm_bindgen_6c0c3bb491d8811b___JsValue____Output___core_f2710c7f87f75ba1___result__Result_____wasm_bindgen_6c0c3bb491d8811b___JsError___: (a: number, b: number) => void;
436
436
  readonly wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__f64__wasm_bindgen_6c0c3bb491d8811b___JsValue___Output_______: (a: number, b: number) => void;
437
- readonly wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__Fn__comms_da1192e2005242d2___livekit__web__room_event__RoomEvent____Output_______: (a: number, b: number) => void;
437
+ readonly wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__Fn__comms_bfc806fed10dedd___livekit__web__room_event__RoomEvent____Output_______: (a: number, b: number) => void;
438
438
  readonly wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__web_sys_72aa5c11aad59394___features__gen_CloseEvent__CloseEvent____Output_______: (a: number, b: number) => void;
439
439
  readonly wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output_______: (a: number, b: number) => void;
440
440
  readonly wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__wasm_bindgen_6c0c3bb491d8811b___JsValue____Output_______: (a: number, b: number) => void;
@@ -446,14 +446,14 @@ export interface InitOutput {
446
446
  readonly wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__core_f2710c7f87f75ba1___option__Option_web_sys_72aa5c11aad59394___features__gen_Blob__Blob_____Output_______: (a: number, b: number) => void;
447
447
  readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___f64__wasm_bindgen_6c0c3bb491d8811b___JsValue______true_: (a: number, b: number, c: number, d: any) => void;
448
448
  readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue__core_f2710c7f87f75ba1___result__Result_____wasm_bindgen_6c0c3bb491d8811b___JsError___true_: (a: number, b: number, c: any) => [number, number];
449
- readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___comms_da1192e2005242d2___livekit__web__local_audio_track__LocalAudioTrack__core_f2710c7f87f75ba1___result__Result_____wasm_bindgen_6c0c3bb491d8811b___JsError___true_: (a: number, b: number, c: any) => [number, number];
449
+ readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___comms_bfc806fed10dedd___livekit__web__local_audio_track__LocalAudioTrack__core_f2710c7f87f75ba1___result__Result_____wasm_bindgen_6c0c3bb491d8811b___JsError___true_: (a: number, b: number, c: any) => [number, number];
450
450
  readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___js_sys_67c12748f230903f___Array__web_sys_72aa5c11aad59394___features__gen_ResizeObserver__ResizeObserver______true_: (a: number, b: number, c: any, d: any) => void;
451
451
  readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___js_sys_67c12748f230903f___Function_fn_wasm_bindgen_6c0c3bb491d8811b___JsValue_____wasm_bindgen_6c0c3bb491d8811b___sys__Undefined___js_sys_67c12748f230903f___Function_fn_wasm_bindgen_6c0c3bb491d8811b___JsValue_____wasm_bindgen_6c0c3bb491d8811b___sys__Undefined_______true_: (a: number, b: number, c: any, d: any) => void;
452
452
  readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__3_: (a: number, b: number, c: any) => void;
453
453
  readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__3__1: (a: number, b: number, c: any) => void;
454
454
  readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__4_: (a: number, b: number, c: any) => void;
455
455
  readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___web_sys_72aa5c11aad59394___features__gen_MessageEvent__MessageEvent______true_: (a: number, b: number, c: any) => void;
456
- readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___comms_da1192e2005242d2___livekit__web__room_event__RoomEvent______true_: (a: number, b: number, c: any) => void;
456
+ readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___comms_bfc806fed10dedd___livekit__web__room_event__RoomEvent______true_: (a: number, b: number, c: any) => void;
457
457
  readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___web_sys_72aa5c11aad59394___features__gen_CloseEvent__CloseEvent______true_: (a: number, b: number, c: any) => void;
458
458
  readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true_: (a: number, b: number, c: any) => void;
459
459
  readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___web_sys_72aa5c11aad59394___features__gen_InputEvent__InputEvent______true_: (a: number, b: number, c: any) => void;
@@ -2071,6 +2071,10 @@ function __wbg_get_imports(memory) {
2071
2071
  const ret = arg0.fullscreenElement;
2072
2072
  return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
2073
2073
  },
2074
+ __wbg_fullscreenEnabled_4c74b31f7c60f8cd: function(arg0) {
2075
+ const ret = arg0.fullscreenEnabled;
2076
+ return ret;
2077
+ },
2074
2078
  __wbg_gain_c5b40ffb38909ac5: function(arg0) {
2075
2079
  const ret = arg0.gain;
2076
2080
  return ret;
@@ -3235,6 +3239,9 @@ function __wbg_get_imports(memory) {
3235
3239
  const ret = arg0.requestDevice(arg1);
3236
3240
  return ret;
3237
3241
  },
3242
+ __wbg_requestFullscreen_045a0765d640e198: function() { return handleError(function (arg0) {
3243
+ arg0.requestFullscreen();
3244
+ }, arguments); },
3238
3245
  __wbg_requestFullscreen_1a5a761851df0375: function(arg0) {
3239
3246
  const ret = arg0.requestFullscreen();
3240
3247
  return ret;
@@ -4419,142 +4426,142 @@ function __wbg_get_imports(memory) {
4419
4426
  return ret;
4420
4427
  },
4421
4428
  __wbindgen_cast_0000000000000001: function(arg0, arg1) {
4422
- // Cast intrinsic for `Closure(Closure { dtor_idx: 124609, function: Function { arguments: [Externref], shim_idx: 124610, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4429
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 124669, function: Function { arguments: [Externref], shim_idx: 124670, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4423
4430
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__wasm_bindgen_6c0c3bb491d8811b___JsValue____Output________2_, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__3_);
4424
4431
  return ret;
4425
4432
  },
4426
4433
  __wbindgen_cast_0000000000000002: function(arg0, arg1) {
4427
- // Cast intrinsic for `Closure(Closure { dtor_idx: 124609, function: Function { arguments: [NamedExternref("GPUUncapturedErrorEvent")], shim_idx: 124610, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4434
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 124669, function: Function { arguments: [NamedExternref("GPUUncapturedErrorEvent")], shim_idx: 124670, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4428
4435
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__wasm_bindgen_6c0c3bb491d8811b___JsValue____Output________2_, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__3__1);
4429
4436
  return ret;
4430
4437
  },
4431
4438
  __wbindgen_cast_0000000000000003: function(arg0, arg1) {
4432
- // Cast intrinsic for `Closure(Closure { dtor_idx: 131880, function: Function { arguments: [Externref], shim_idx: 131881, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4439
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 131940, function: Function { arguments: [Externref], shim_idx: 131941, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4433
4440
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__wasm_bindgen_6c0c3bb491d8811b___JsValue____Output________3_, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__4_);
4434
4441
  return ret;
4435
4442
  },
4436
4443
  __wbindgen_cast_0000000000000004: function(arg0, arg1) {
4437
- // Cast intrinsic for `Closure(Closure { dtor_idx: 139934, function: Function { arguments: [Externref], shim_idx: 139935, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
4444
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 139994, function: Function { arguments: [Externref], shim_idx: 139995, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
4438
4445
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__wasm_bindgen_6c0c3bb491d8811b___JsValue____Output___core_f2710c7f87f75ba1___result__Result_____wasm_bindgen_6c0c3bb491d8811b___JsError___, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue__core_f2710c7f87f75ba1___result__Result_____wasm_bindgen_6c0c3bb491d8811b___JsError___true_);
4439
4446
  return ret;
4440
4447
  },
4441
4448
  __wbindgen_cast_0000000000000005: function(arg0, arg1) {
4442
- // Cast intrinsic for `Closure(Closure { dtor_idx: 139934, function: Function { arguments: [NamedExternref("MessageEvent")], shim_idx: 139937, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4449
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 139994, function: Function { arguments: [NamedExternref("MessageEvent")], shim_idx: 139997, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4443
4450
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__wasm_bindgen_6c0c3bb491d8811b___JsValue____Output___core_f2710c7f87f75ba1___result__Result_____wasm_bindgen_6c0c3bb491d8811b___JsError___, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___web_sys_72aa5c11aad59394___features__gen_MessageEvent__MessageEvent______true_);
4444
4451
  return ret;
4445
4452
  },
4446
4453
  __wbindgen_cast_0000000000000006: function(arg0, arg1) {
4447
- // Cast intrinsic for `Closure(Closure { dtor_idx: 18008, function: Function { arguments: [F64, Externref], shim_idx: 18009, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4454
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 18007, function: Function { arguments: [F64, Externref], shim_idx: 18008, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4448
4455
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__f64__wasm_bindgen_6c0c3bb491d8811b___JsValue___Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___f64__wasm_bindgen_6c0c3bb491d8811b___JsValue______true_);
4449
4456
  return ret;
4450
4457
  },
4451
4458
  __wbindgen_cast_0000000000000007: function(arg0, arg1) {
4452
- // Cast intrinsic for `Closure(Closure { dtor_idx: 45802, function: Function { arguments: [Externref], shim_idx: 45803, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
4453
- const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__Fn__comms_da1192e2005242d2___livekit__web__room_event__RoomEvent____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___comms_da1192e2005242d2___livekit__web__local_audio_track__LocalAudioTrack__core_f2710c7f87f75ba1___result__Result_____wasm_bindgen_6c0c3bb491d8811b___JsError___true_);
4459
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 45801, function: Function { arguments: [Externref], shim_idx: 45802, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
4460
+ const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__Fn__comms_bfc806fed10dedd___livekit__web__room_event__RoomEvent____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___comms_bfc806fed10dedd___livekit__web__local_audio_track__LocalAudioTrack__core_f2710c7f87f75ba1___result__Result_____wasm_bindgen_6c0c3bb491d8811b___JsError___true_);
4454
4461
  return ret;
4455
4462
  },
4456
4463
  __wbindgen_cast_0000000000000008: function(arg0, arg1) {
4457
- // Cast intrinsic for `Closure(Closure { dtor_idx: 45802, function: Function { arguments: [Externref], shim_idx: 45805, ret: Unit, inner_ret: Some(Unit) }, mutable: false }) -> Externref`.
4458
- const ret = makeClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__Fn__comms_da1192e2005242d2___livekit__web__room_event__RoomEvent____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___comms_da1192e2005242d2___livekit__web__room_event__RoomEvent______true_);
4464
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 45801, function: Function { arguments: [Externref], shim_idx: 45804, ret: Unit, inner_ret: Some(Unit) }, mutable: false }) -> Externref`.
4465
+ const ret = makeClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__Fn__comms_bfc806fed10dedd___livekit__web__room_event__RoomEvent____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___comms_bfc806fed10dedd___livekit__web__room_event__RoomEvent______true_);
4459
4466
  return ret;
4460
4467
  },
4461
4468
  __wbindgen_cast_0000000000000009: function(arg0, arg1) {
4462
- // Cast intrinsic for `Closure(Closure { dtor_idx: 55476, function: Function { arguments: [NamedExternref("CloseEvent")], shim_idx: 55477, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4469
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 55475, function: Function { arguments: [NamedExternref("CloseEvent")], shim_idx: 55476, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4463
4470
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__web_sys_72aa5c11aad59394___features__gen_CloseEvent__CloseEvent____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___web_sys_72aa5c11aad59394___features__gen_CloseEvent__CloseEvent______true_);
4464
4471
  return ret;
4465
4472
  },
4466
4473
  __wbindgen_cast_000000000000000a: function(arg0, arg1) {
4467
- // Cast intrinsic for `Closure(Closure { dtor_idx: 55581, function: Function { arguments: [], shim_idx: 55582, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4474
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 55580, function: Function { arguments: [], shim_idx: 55581, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4468
4475
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke_______true_);
4469
4476
  return ret;
4470
4477
  },
4471
4478
  __wbindgen_cast_000000000000000b: function(arg0, arg1) {
4472
- // Cast intrinsic for `Closure(Closure { dtor_idx: 55584, function: Function { arguments: [Externref], shim_idx: 55585, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4479
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 55583, function: Function { arguments: [Externref], shim_idx: 55584, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4473
4480
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__wasm_bindgen_6c0c3bb491d8811b___JsValue____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true_);
4474
4481
  return ret;
4475
4482
  },
4476
4483
  __wbindgen_cast_000000000000000c: function(arg0, arg1) {
4477
- // Cast intrinsic for `Closure(Closure { dtor_idx: 58871, function: Function { arguments: [], shim_idx: 58872, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4484
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 58931, function: Function { arguments: [], shim_idx: 58932, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4478
4485
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output________1_, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke_______true__1_);
4479
4486
  return ret;
4480
4487
  },
4481
4488
  __wbindgen_cast_000000000000000d: function(arg0, arg1) {
4482
- // Cast intrinsic for `Closure(Closure { dtor_idx: 59479, function: Function { arguments: [NamedExternref("CompositionEvent")], shim_idx: 59480, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4489
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 59539, function: Function { arguments: [NamedExternref("CompositionEvent")], shim_idx: 59540, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4483
4490
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__web_sys_72aa5c11aad59394___features__gen_InputEvent__InputEvent____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___web_sys_72aa5c11aad59394___features__gen_InputEvent__InputEvent______true_);
4484
4491
  return ret;
4485
4492
  },
4486
4493
  __wbindgen_cast_000000000000000e: function(arg0, arg1) {
4487
- // Cast intrinsic for `Closure(Closure { dtor_idx: 59479, function: Function { arguments: [NamedExternref("InputEvent")], shim_idx: 59480, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4494
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 59539, function: Function { arguments: [NamedExternref("InputEvent")], shim_idx: 59540, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4488
4495
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__web_sys_72aa5c11aad59394___features__gen_InputEvent__InputEvent____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___web_sys_72aa5c11aad59394___features__gen_InputEvent__InputEvent______true__13);
4489
4496
  return ret;
4490
4497
  },
4491
4498
  __wbindgen_cast_000000000000000f: function(arg0, arg1) {
4492
- // Cast intrinsic for `Closure(Closure { dtor_idx: 59479, function: Function { arguments: [NamedExternref("TouchEvent")], shim_idx: 59480, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4499
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 59539, function: Function { arguments: [NamedExternref("TouchEvent")], shim_idx: 59540, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4493
4500
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__web_sys_72aa5c11aad59394___features__gen_InputEvent__InputEvent____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___web_sys_72aa5c11aad59394___features__gen_InputEvent__InputEvent______true__14);
4494
4501
  return ret;
4495
4502
  },
4496
4503
  __wbindgen_cast_0000000000000010: function(arg0, arg1) {
4497
- // Cast intrinsic for `Closure(Closure { dtor_idx: 62731, function: Function { arguments: [], shim_idx: 62732, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4504
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 62791, function: Function { arguments: [], shim_idx: 62792, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4498
4505
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output________2_, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke_______true__2_);
4499
4506
  return ret;
4500
4507
  },
4501
4508
  __wbindgen_cast_0000000000000011: function(arg0, arg1) {
4502
- // Cast intrinsic for `Closure(Closure { dtor_idx: 63105, function: Function { arguments: [], shim_idx: 63106, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4509
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 63165, function: Function { arguments: [], shim_idx: 63166, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4503
4510
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output________3_, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke_______true__3_);
4504
4511
  return ret;
4505
4512
  },
4506
4513
  __wbindgen_cast_0000000000000012: function(arg0, arg1) {
4507
- // Cast intrinsic for `Closure(Closure { dtor_idx: 63141, function: Function { arguments: [Externref], shim_idx: 63142, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4514
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 63201, function: Function { arguments: [Externref], shim_idx: 63202, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4508
4515
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__wasm_bindgen_6c0c3bb491d8811b___JsValue____Output________1_, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__1_);
4509
4516
  return ret;
4510
4517
  },
4511
4518
  __wbindgen_cast_0000000000000013: function(arg0, arg1) {
4512
- // Cast intrinsic for `Closure(Closure { dtor_idx: 64577, function: Function { arguments: [Externref], shim_idx: 64578, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4519
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 64637, function: Function { arguments: [Externref], shim_idx: 64638, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4513
4520
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__core_f2710c7f87f75ba1___option__Option_web_sys_72aa5c11aad59394___features__gen_Blob__Blob_____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__2_);
4514
4521
  return ret;
4515
4522
  },
4516
4523
  __wbindgen_cast_0000000000000014: function(arg0, arg1) {
4517
- // Cast intrinsic for `Closure(Closure { dtor_idx: 64577, function: Function { arguments: [NamedExternref("Array<any>"), NamedExternref("ResizeObserver")], shim_idx: 64585, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4524
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 64637, function: Function { arguments: [NamedExternref("Array<any>"), NamedExternref("ResizeObserver")], shim_idx: 64645, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4518
4525
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__core_f2710c7f87f75ba1___option__Option_web_sys_72aa5c11aad59394___features__gen_Blob__Blob_____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___js_sys_67c12748f230903f___Array__web_sys_72aa5c11aad59394___features__gen_ResizeObserver__ResizeObserver______true_);
4519
4526
  return ret;
4520
4527
  },
4521
4528
  __wbindgen_cast_0000000000000015: function(arg0, arg1) {
4522
- // Cast intrinsic for `Closure(Closure { dtor_idx: 64577, function: Function { arguments: [NamedExternref("Array<any>")], shim_idx: 64578, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4529
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 64637, function: Function { arguments: [NamedExternref("Array<any>")], shim_idx: 64638, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4523
4530
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__core_f2710c7f87f75ba1___option__Option_web_sys_72aa5c11aad59394___features__gen_Blob__Blob_____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__2__20);
4524
4531
  return ret;
4525
4532
  },
4526
4533
  __wbindgen_cast_0000000000000016: function(arg0, arg1) {
4527
- // Cast intrinsic for `Closure(Closure { dtor_idx: 64577, function: Function { arguments: [NamedExternref("Event")], shim_idx: 64578, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4534
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 64637, function: Function { arguments: [NamedExternref("Event")], shim_idx: 64638, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4528
4535
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__core_f2710c7f87f75ba1___option__Option_web_sys_72aa5c11aad59394___features__gen_Blob__Blob_____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__2__21);
4529
4536
  return ret;
4530
4537
  },
4531
4538
  __wbindgen_cast_0000000000000017: function(arg0, arg1) {
4532
- // Cast intrinsic for `Closure(Closure { dtor_idx: 64577, function: Function { arguments: [NamedExternref("FocusEvent")], shim_idx: 64578, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4539
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 64637, function: Function { arguments: [NamedExternref("FocusEvent")], shim_idx: 64638, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4533
4540
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__core_f2710c7f87f75ba1___option__Option_web_sys_72aa5c11aad59394___features__gen_Blob__Blob_____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__2__22);
4534
4541
  return ret;
4535
4542
  },
4536
4543
  __wbindgen_cast_0000000000000018: function(arg0, arg1) {
4537
- // Cast intrinsic for `Closure(Closure { dtor_idx: 64577, function: Function { arguments: [NamedExternref("KeyboardEvent")], shim_idx: 64578, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4544
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 64637, function: Function { arguments: [NamedExternref("KeyboardEvent")], shim_idx: 64638, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4538
4545
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__core_f2710c7f87f75ba1___option__Option_web_sys_72aa5c11aad59394___features__gen_Blob__Blob_____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__2__23);
4539
4546
  return ret;
4540
4547
  },
4541
4548
  __wbindgen_cast_0000000000000019: function(arg0, arg1) {
4542
- // Cast intrinsic for `Closure(Closure { dtor_idx: 64577, function: Function { arguments: [NamedExternref("PageTransitionEvent")], shim_idx: 64578, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4549
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 64637, function: Function { arguments: [NamedExternref("PageTransitionEvent")], shim_idx: 64638, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4543
4550
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__core_f2710c7f87f75ba1___option__Option_web_sys_72aa5c11aad59394___features__gen_Blob__Blob_____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__2__24);
4544
4551
  return ret;
4545
4552
  },
4546
4553
  __wbindgen_cast_000000000000001a: function(arg0, arg1) {
4547
- // Cast intrinsic for `Closure(Closure { dtor_idx: 64577, function: Function { arguments: [NamedExternref("PointerEvent")], shim_idx: 64578, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4554
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 64637, function: Function { arguments: [NamedExternref("PointerEvent")], shim_idx: 64638, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4548
4555
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__core_f2710c7f87f75ba1___option__Option_web_sys_72aa5c11aad59394___features__gen_Blob__Blob_____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__2__25);
4549
4556
  return ret;
4550
4557
  },
4551
4558
  __wbindgen_cast_000000000000001b: function(arg0, arg1) {
4552
- // Cast intrinsic for `Closure(Closure { dtor_idx: 64577, function: Function { arguments: [NamedExternref("WheelEvent")], shim_idx: 64578, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4559
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 64637, function: Function { arguments: [NamedExternref("WheelEvent")], shim_idx: 64638, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4553
4560
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__core_f2710c7f87f75ba1___option__Option_web_sys_72aa5c11aad59394___features__gen_Blob__Blob_____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__2__26);
4554
4561
  return ret;
4555
4562
  },
4556
4563
  __wbindgen_cast_000000000000001c: function(arg0, arg1) {
4557
- // Cast intrinsic for `Closure(Closure { dtor_idx: 64577, function: Function { arguments: [], shim_idx: 64593, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4564
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 64637, function: Function { arguments: [], shim_idx: 64653, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
4558
4565
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__core_f2710c7f87f75ba1___option__Option_web_sys_72aa5c11aad59394___features__gen_Blob__Blob_____Output_______, wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke_______true__4_);
4559
4566
  return ret;
4560
4567
  },
@@ -4962,8 +4969,8 @@ function wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___web_sys_
4962
4969
  wasm.wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___web_sys_72aa5c11aad59394___features__gen_MessageEvent__MessageEvent______true_(arg0, arg1, arg2);
4963
4970
  }
4964
4971
 
4965
- function wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___comms_da1192e2005242d2___livekit__web__room_event__RoomEvent______true_(arg0, arg1, arg2) {
4966
- wasm.wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___comms_da1192e2005242d2___livekit__web__room_event__RoomEvent______true_(arg0, arg1, arg2);
4972
+ function wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___comms_bfc806fed10dedd___livekit__web__room_event__RoomEvent______true_(arg0, arg1, arg2) {
4973
+ wasm.wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___comms_bfc806fed10dedd___livekit__web__room_event__RoomEvent______true_(arg0, arg1, arg2);
4967
4974
  }
4968
4975
 
4969
4976
  function wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___web_sys_72aa5c11aad59394___features__gen_CloseEvent__CloseEvent______true_(arg0, arg1, arg2) {
@@ -5029,8 +5036,8 @@ function wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bin
5029
5036
  }
5030
5037
  }
5031
5038
 
5032
- function wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___comms_da1192e2005242d2___livekit__web__local_audio_track__LocalAudioTrack__core_f2710c7f87f75ba1___result__Result_____wasm_bindgen_6c0c3bb491d8811b___JsError___true_(arg0, arg1, arg2) {
5033
- const ret = wasm.wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___comms_da1192e2005242d2___livekit__web__local_audio_track__LocalAudioTrack__core_f2710c7f87f75ba1___result__Result_____wasm_bindgen_6c0c3bb491d8811b___JsError___true_(arg0, arg1, arg2);
5039
+ function wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___comms_bfc806fed10dedd___livekit__web__local_audio_track__LocalAudioTrack__core_f2710c7f87f75ba1___result__Result_____wasm_bindgen_6c0c3bb491d8811b___JsError___true_(arg0, arg1, arg2) {
5040
+ const ret = wasm.wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___comms_bfc806fed10dedd___livekit__web__local_audio_track__LocalAudioTrack__core_f2710c7f87f75ba1___result__Result_____wasm_bindgen_6c0c3bb491d8811b___JsError___true_(arg0, arg1, arg2);
5034
5041
  if (ret[1]) {
5035
5042
  throw takeFromExternrefTable0(ret[0]);
5036
5043
  }
Binary file
@@ -133,7 +133,7 @@ export const wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7
133
133
  export const wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__wasm_bindgen_6c0c3bb491d8811b___JsValue____Output________3_: (a: number, b: number) => void;
134
134
  export const wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__wasm_bindgen_6c0c3bb491d8811b___JsValue____Output___core_f2710c7f87f75ba1___result__Result_____wasm_bindgen_6c0c3bb491d8811b___JsError___: (a: number, b: number) => void;
135
135
  export const wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__f64__wasm_bindgen_6c0c3bb491d8811b___JsValue___Output_______: (a: number, b: number) => void;
136
- export const wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__Fn__comms_da1192e2005242d2___livekit__web__room_event__RoomEvent____Output_______: (a: number, b: number) => void;
136
+ export const wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__Fn__comms_bfc806fed10dedd___livekit__web__room_event__RoomEvent____Output_______: (a: number, b: number) => void;
137
137
  export const wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__web_sys_72aa5c11aad59394___features__gen_CloseEvent__CloseEvent____Output_______: (a: number, b: number) => void;
138
138
  export const wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output_______: (a: number, b: number) => void;
139
139
  export const wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__wasm_bindgen_6c0c3bb491d8811b___JsValue____Output_______: (a: number, b: number) => void;
@@ -145,14 +145,14 @@ export const wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7
145
145
  export const wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__core_f2710c7f87f75ba1___option__Option_web_sys_72aa5c11aad59394___features__gen_Blob__Blob_____Output_______: (a: number, b: number) => void;
146
146
  export const wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___f64__wasm_bindgen_6c0c3bb491d8811b___JsValue______true_: (a: number, b: number, c: number, d: any) => void;
147
147
  export const wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue__core_f2710c7f87f75ba1___result__Result_____wasm_bindgen_6c0c3bb491d8811b___JsError___true_: (a: number, b: number, c: any) => [number, number];
148
- export const wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___comms_da1192e2005242d2___livekit__web__local_audio_track__LocalAudioTrack__core_f2710c7f87f75ba1___result__Result_____wasm_bindgen_6c0c3bb491d8811b___JsError___true_: (a: number, b: number, c: any) => [number, number];
148
+ export const wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___comms_bfc806fed10dedd___livekit__web__local_audio_track__LocalAudioTrack__core_f2710c7f87f75ba1___result__Result_____wasm_bindgen_6c0c3bb491d8811b___JsError___true_: (a: number, b: number, c: any) => [number, number];
149
149
  export const wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___js_sys_67c12748f230903f___Array__web_sys_72aa5c11aad59394___features__gen_ResizeObserver__ResizeObserver______true_: (a: number, b: number, c: any, d: any) => void;
150
150
  export const wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___js_sys_67c12748f230903f___Function_fn_wasm_bindgen_6c0c3bb491d8811b___JsValue_____wasm_bindgen_6c0c3bb491d8811b___sys__Undefined___js_sys_67c12748f230903f___Function_fn_wasm_bindgen_6c0c3bb491d8811b___JsValue_____wasm_bindgen_6c0c3bb491d8811b___sys__Undefined_______true_: (a: number, b: number, c: any, d: any) => void;
151
151
  export const wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__3_: (a: number, b: number, c: any) => void;
152
152
  export const wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__3__1: (a: number, b: number, c: any) => void;
153
153
  export const wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__4_: (a: number, b: number, c: any) => void;
154
154
  export const wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___web_sys_72aa5c11aad59394___features__gen_MessageEvent__MessageEvent______true_: (a: number, b: number, c: any) => void;
155
- export const wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___comms_da1192e2005242d2___livekit__web__room_event__RoomEvent______true_: (a: number, b: number, c: any) => void;
155
+ export const wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___comms_bfc806fed10dedd___livekit__web__room_event__RoomEvent______true_: (a: number, b: number, c: any) => void;
156
156
  export const wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___web_sys_72aa5c11aad59394___features__gen_CloseEvent__CloseEvent______true_: (a: number, b: number, c: any) => void;
157
157
  export const wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true_: (a: number, b: number, c: any) => void;
158
158
  export const wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___web_sys_72aa5c11aad59394___features__gen_InputEvent__InputEvent______true_: (a: number, b: number, c: any) => void;