@dcl-regenesislabs/bevy-explorer-web 0.1.0-26787745906.commit-78c9429 → 0.1.0-26833693169.commit-12ec84c
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 +1 -1
- package/index.html +1 -1
- package/package.json +3 -3
- package/pkg/manifest.json +1 -1
- package/pkg/snippets/comms-53217a45365bb5fa/livekit_web_bindings.js +11 -2
- package/pkg/webgpu_build.d.ts +43 -67
- package/pkg/webgpu_build.js +135 -156
- package/pkg/webgpu_build_bg.wasm +0 -0
- package/pkg/webgpu_build_bg.wasm.d.ts +43 -45
package/.env
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
PUBLIC_URL="https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-
|
|
1
|
+
PUBLIC_URL="https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-26833693169.commit-12ec84c"
|
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-
|
|
414
|
+
<script>window.PUBLIC_URL = "https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-26833693169.commit-12ec84c";</script>
|
|
415
415
|
</head>
|
|
416
416
|
<body>
|
|
417
417
|
<div id="header" class="container">
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dcl-regenesislabs/bevy-explorer-web",
|
|
3
|
-
"version": "0.1.0-
|
|
3
|
+
"version": "0.1.0-26833693169.commit-12ec84c",
|
|
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-
|
|
12
|
-
"commit": "
|
|
11
|
+
"homepage": "https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-26833693169.commit-12ec84c",
|
|
12
|
+
"commit": "12ec84cd4526335c9c09e31c5204094a3a02667f"
|
|
13
13
|
}
|
package/pkg/manifest.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"wasmSize":
|
|
1
|
+
{"wasmSize":108654721}
|
|
@@ -270,6 +270,15 @@ function set_room_event_handler(room, handler) {
|
|
|
270
270
|
})
|
|
271
271
|
}
|
|
272
272
|
);
|
|
273
|
+
room.on(
|
|
274
|
+
LivekitClient.RoomEvent.ActiveSpeakersChanged,
|
|
275
|
+
(speakers) => {
|
|
276
|
+
handler({
|
|
277
|
+
type: 'activeSpeakersChanged',
|
|
278
|
+
speakers,
|
|
279
|
+
})
|
|
280
|
+
}
|
|
281
|
+
);
|
|
273
282
|
}
|
|
274
283
|
|
|
275
284
|
/**
|
|
@@ -277,8 +286,8 @@ function set_room_event_handler(room, handler) {
|
|
|
277
286
|
* @param {livekit.Participant} participant
|
|
278
287
|
* @returns bool
|
|
279
288
|
*/
|
|
280
|
-
export async function
|
|
281
|
-
return
|
|
289
|
+
export async function participant_is_local(participant) {
|
|
290
|
+
return participant.isLocal;
|
|
282
291
|
}
|
|
283
292
|
|
|
284
293
|
/**
|
package/pkg/webgpu_build.d.ts
CHANGED
|
@@ -23,28 +23,6 @@ export class AudioCaptureOptions {
|
|
|
23
23
|
set voiceIsolation(value: boolean | null | undefined);
|
|
24
24
|
}
|
|
25
25
|
|
|
26
|
-
/**
|
|
27
|
-
* Chroma subsampling format
|
|
28
|
-
*/
|
|
29
|
-
export enum ChromaSampling {
|
|
30
|
-
/**
|
|
31
|
-
* Both vertically and horizontally subsampled.
|
|
32
|
-
*/
|
|
33
|
-
Cs420 = 0,
|
|
34
|
-
/**
|
|
35
|
-
* Horizontally subsampled.
|
|
36
|
-
*/
|
|
37
|
-
Cs422 = 1,
|
|
38
|
-
/**
|
|
39
|
-
* Not subsampled.
|
|
40
|
-
*/
|
|
41
|
-
Cs444 = 2,
|
|
42
|
-
/**
|
|
43
|
-
* Monochrome.
|
|
44
|
-
*/
|
|
45
|
-
Cs400 = 3,
|
|
46
|
-
}
|
|
47
|
-
|
|
48
26
|
/**
|
|
49
27
|
* Kind of the packet.
|
|
50
28
|
*
|
|
@@ -496,51 +474,49 @@ export interface InitOutput {
|
|
|
496
474
|
readonly __wbg_set_audiocaptureoptions_sampleRate: (a: number, b: number, c: bigint) => void;
|
|
497
475
|
readonly __wbg_set_audiocaptureoptions_sampleSize: (a: number, b: number, c: bigint) => void;
|
|
498
476
|
readonly __wbg_set_audiocaptureoptions_voiceIsolation: (a: number, b: number) => void;
|
|
499
|
-
readonly
|
|
500
|
-
readonly
|
|
501
|
-
readonly
|
|
502
|
-
readonly
|
|
503
|
-
readonly
|
|
504
|
-
readonly
|
|
505
|
-
readonly
|
|
506
|
-
readonly
|
|
507
|
-
readonly
|
|
508
|
-
readonly
|
|
509
|
-
readonly
|
|
510
|
-
readonly
|
|
511
|
-
readonly
|
|
512
|
-
readonly
|
|
513
|
-
readonly
|
|
514
|
-
readonly
|
|
515
|
-
readonly
|
|
516
|
-
readonly
|
|
517
|
-
readonly
|
|
518
|
-
readonly
|
|
519
|
-
readonly
|
|
520
|
-
readonly
|
|
521
|
-
readonly
|
|
522
|
-
readonly
|
|
523
|
-
readonly
|
|
524
|
-
readonly
|
|
525
|
-
readonly
|
|
526
|
-
readonly
|
|
527
|
-
readonly
|
|
528
|
-
readonly
|
|
529
|
-
readonly
|
|
530
|
-
readonly
|
|
531
|
-
readonly
|
|
532
|
-
readonly
|
|
533
|
-
readonly
|
|
534
|
-
readonly
|
|
535
|
-
readonly
|
|
536
|
-
readonly
|
|
537
|
-
readonly
|
|
538
|
-
readonly
|
|
539
|
-
readonly
|
|
540
|
-
readonly
|
|
541
|
-
readonly
|
|
542
|
-
readonly wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke_______true__2_: (a: number, b: number) => void;
|
|
543
|
-
readonly wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke_______true__3_: (a: number, b: number) => void;
|
|
477
|
+
readonly wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__web_sys_dd19305f70232297___features__gen_CloseEvent__CloseEvent____Output_______: (a: number, b: number) => void;
|
|
478
|
+
readonly wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__wasm_bindgen_37b2aef40228fbc7___JsValue____Output________1_: (a: number, b: number) => void;
|
|
479
|
+
readonly wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__wasm_bindgen_37b2aef40228fbc7___JsValue____Output________2_: (a: number, b: number) => void;
|
|
480
|
+
readonly wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut_____Output________3_: (a: number, b: number) => void;
|
|
481
|
+
readonly wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__wasm_bindgen_37b2aef40228fbc7___JsValue____Output___core_b1d35abfa360d765___result__Result_____wasm_bindgen_37b2aef40228fbc7___JsError___: (a: number, b: number) => void;
|
|
482
|
+
readonly wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__f64__wasm_bindgen_37b2aef40228fbc7___JsValue___Output_______: (a: number, b: number) => void;
|
|
483
|
+
readonly wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__Fn__comms_24732aceb72db229___livekit__web__room_event__RoomEvent____Output_______: (a: number, b: number) => void;
|
|
484
|
+
readonly wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__web_sys_dd19305f70232297___features__gen_CloseEvent__CloseEvent____Output________1_: (a: number, b: number) => void;
|
|
485
|
+
readonly wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut_____Output_______: (a: number, b: number) => void;
|
|
486
|
+
readonly wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut_____Output________1_: (a: number, b: number) => void;
|
|
487
|
+
readonly wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut_____Output________2_: (a: number, b: number) => void;
|
|
488
|
+
readonly wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__wasm_bindgen_37b2aef40228fbc7___JsValue____Output_______: (a: number, b: number) => void;
|
|
489
|
+
readonly wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__web_sys_dd19305f70232297___features__gen_InputEvent__InputEvent____Output_______: (a: number, b: number) => void;
|
|
490
|
+
readonly wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__core_b1d35abfa360d765___option__Option_web_sys_dd19305f70232297___features__gen_Blob__Blob_____Output_______: (a: number, b: number) => void;
|
|
491
|
+
readonly wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___f64__wasm_bindgen_37b2aef40228fbc7___JsValue______true_: (a: number, b: number, c: number, d: any) => void;
|
|
492
|
+
readonly wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue__core_b1d35abfa360d765___result__Result_____wasm_bindgen_37b2aef40228fbc7___JsError___true_: (a: number, b: number, c: any) => [number, number];
|
|
493
|
+
readonly wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___comms_24732aceb72db229___livekit__web__local_audio_track__LocalAudioTrack__core_b1d35abfa360d765___result__Result_____wasm_bindgen_37b2aef40228fbc7___JsError___true_: (a: number, b: number, c: any) => [number, number];
|
|
494
|
+
readonly wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___js_sys_342d9548e43f4e8___Array__web_sys_dd19305f70232297___features__gen_ResizeObserver__ResizeObserver______true_: (a: number, b: number, c: any, d: any) => void;
|
|
495
|
+
readonly wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___js_sys_342d9548e43f4e8___Function_fn_wasm_bindgen_37b2aef40228fbc7___JsValue_____wasm_bindgen_37b2aef40228fbc7___sys__Undefined___js_sys_342d9548e43f4e8___Function_fn_wasm_bindgen_37b2aef40228fbc7___JsValue_____wasm_bindgen_37b2aef40228fbc7___sys__Undefined_______true_: (a: number, b: number, c: any, d: any) => void;
|
|
496
|
+
readonly wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___web_sys_dd19305f70232297___features__gen_CloseEvent__CloseEvent______true_: (a: number, b: number, c: any) => void;
|
|
497
|
+
readonly wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__2_: (a: number, b: number, c: any) => void;
|
|
498
|
+
readonly wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__2__2: (a: number, b: number, c: any) => void;
|
|
499
|
+
readonly wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__3_: (a: number, b: number, c: any) => void;
|
|
500
|
+
readonly wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___web_sys_dd19305f70232297___features__gen_MessageEvent__MessageEvent______true_: (a: number, b: number, c: any) => void;
|
|
501
|
+
readonly wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___comms_24732aceb72db229___livekit__web__room_event__RoomEvent______true_: (a: number, b: number, c: any) => void;
|
|
502
|
+
readonly wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___web_sys_dd19305f70232297___features__gen_CloseEvent__CloseEvent______true__1_: (a: number, b: number, c: any) => void;
|
|
503
|
+
readonly wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true_: (a: number, b: number, c: any) => void;
|
|
504
|
+
readonly wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___web_sys_dd19305f70232297___features__gen_InputEvent__InputEvent______true_: (a: number, b: number, c: any) => void;
|
|
505
|
+
readonly wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___web_sys_dd19305f70232297___features__gen_InputEvent__InputEvent______true__16: (a: number, b: number, c: any) => void;
|
|
506
|
+
readonly wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___web_sys_dd19305f70232297___features__gen_InputEvent__InputEvent______true__17: (a: number, b: number, c: any) => void;
|
|
507
|
+
readonly wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__1_: (a: number, b: number, c: any) => void;
|
|
508
|
+
readonly wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__1__20: (a: number, b: number, c: any) => void;
|
|
509
|
+
readonly wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__1__21: (a: number, b: number, c: any) => void;
|
|
510
|
+
readonly wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__1__22: (a: number, b: number, c: any) => void;
|
|
511
|
+
readonly wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__1__23: (a: number, b: number, c: any) => void;
|
|
512
|
+
readonly wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__1__24: (a: number, b: number, c: any) => void;
|
|
513
|
+
readonly wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__1__25: (a: number, b: number, c: any) => void;
|
|
514
|
+
readonly wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__1__26: (a: number, b: number, c: any) => void;
|
|
515
|
+
readonly wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke_______true__4_: (a: number, b: number) => void;
|
|
516
|
+
readonly wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke_______true_: (a: number, b: number) => void;
|
|
517
|
+
readonly wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke_______true__1_: (a: number, b: number) => void;
|
|
518
|
+
readonly wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke_______true__2_: (a: number, b: number) => void;
|
|
519
|
+
readonly wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke_______true__3_: (a: number, b: number) => void;
|
|
544
520
|
readonly memory: WebAssembly.Memory;
|
|
545
521
|
readonly __wbindgen_malloc: (a: number, b: number) => number;
|
|
546
522
|
readonly __wbindgen_realloc: (a: number, b: number, c: number, d: number) => number;
|
package/pkg/webgpu_build.js
CHANGED
|
@@ -126,29 +126,6 @@ export class AudioCaptureOptions {
|
|
|
126
126
|
}
|
|
127
127
|
if (Symbol.dispose) AudioCaptureOptions.prototype[Symbol.dispose] = AudioCaptureOptions.prototype.free;
|
|
128
128
|
|
|
129
|
-
/**
|
|
130
|
-
* Chroma subsampling format
|
|
131
|
-
* @enum {0 | 1 | 2 | 3}
|
|
132
|
-
*/
|
|
133
|
-
export const ChromaSampling = Object.freeze({
|
|
134
|
-
/**
|
|
135
|
-
* Both vertically and horizontally subsampled.
|
|
136
|
-
*/
|
|
137
|
-
Cs420: 0, "0": "Cs420",
|
|
138
|
-
/**
|
|
139
|
-
* Horizontally subsampled.
|
|
140
|
-
*/
|
|
141
|
-
Cs422: 1, "1": "Cs422",
|
|
142
|
-
/**
|
|
143
|
-
* Not subsampled.
|
|
144
|
-
*/
|
|
145
|
-
Cs444: 2, "2": "Cs444",
|
|
146
|
-
/**
|
|
147
|
-
* Monochrome.
|
|
148
|
-
*/
|
|
149
|
-
Cs400: 3, "3": "Cs400",
|
|
150
|
-
});
|
|
151
|
-
|
|
152
129
|
/**
|
|
153
130
|
* Kind of the packet.
|
|
154
131
|
*
|
|
@@ -2328,6 +2305,10 @@ function __wbg_get_imports(memory) {
|
|
|
2328
2305
|
__wbg_focus_885197ce680db9e0: function() { return handleError(function (arg0) {
|
|
2329
2306
|
arg0.focus();
|
|
2330
2307
|
}, arguments); },
|
|
2308
|
+
__wbg_from_4bdf88943703fd48: function(arg0) {
|
|
2309
|
+
const ret = Array.from(arg0);
|
|
2310
|
+
return ret;
|
|
2311
|
+
},
|
|
2331
2312
|
__wbg_fullscreenElement_8068aa5be9c86543: function(arg0) {
|
|
2332
2313
|
const ret = arg0.fullscreenElement;
|
|
2333
2314
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
@@ -2411,7 +2392,7 @@ function __wbg_get_imports(memory) {
|
|
|
2411
2392
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
2412
2393
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
2413
2394
|
}, arguments); },
|
|
2414
|
-
|
|
2395
|
+
__wbg_getRandomValues_3fa1b8b12822faf0: function() { return handleError(function (arg0) {
|
|
2415
2396
|
globalThis.crypto.getRandomValues(arg0);
|
|
2416
2397
|
}, arguments); },
|
|
2417
2398
|
__wbg_getRandomValues_b2176991427f6db8: function() { return handleError(function (arg0) {
|
|
@@ -3141,7 +3122,7 @@ function __wbg_get_imports(memory) {
|
|
|
3141
3122
|
const a = state0.a;
|
|
3142
3123
|
state0.a = 0;
|
|
3143
3124
|
try {
|
|
3144
|
-
return
|
|
3125
|
+
return wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___js_sys_342d9548e43f4e8___Function_fn_wasm_bindgen_37b2aef40228fbc7___JsValue_____wasm_bindgen_37b2aef40228fbc7___sys__Undefined___js_sys_342d9548e43f4e8___Function_fn_wasm_bindgen_37b2aef40228fbc7___JsValue_____wasm_bindgen_37b2aef40228fbc7___sys__Undefined_______true_(a, state0.b, arg0, arg1);
|
|
3145
3126
|
} finally {
|
|
3146
3127
|
state0.a = a;
|
|
3147
3128
|
}
|
|
@@ -3179,7 +3160,7 @@ function __wbg_get_imports(memory) {
|
|
|
3179
3160
|
const a = state0.a;
|
|
3180
3161
|
state0.a = 0;
|
|
3181
3162
|
try {
|
|
3182
|
-
return
|
|
3163
|
+
return wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___js_sys_342d9548e43f4e8___Function_fn_wasm_bindgen_37b2aef40228fbc7___JsValue_____wasm_bindgen_37b2aef40228fbc7___sys__Undefined___js_sys_342d9548e43f4e8___Function_fn_wasm_bindgen_37b2aef40228fbc7___JsValue_____wasm_bindgen_37b2aef40228fbc7___sys__Undefined_______true_(a, state0.b, arg0, arg1);
|
|
3183
3164
|
} finally {
|
|
3184
3165
|
state0.a = a;
|
|
3185
3166
|
}
|
|
@@ -4402,6 +4383,13 @@ function __wbg_get_imports(memory) {
|
|
|
4402
4383
|
const ret = arg0.size;
|
|
4403
4384
|
return ret;
|
|
4404
4385
|
},
|
|
4386
|
+
__wbg_slice_6c91edc1cff27a67: function(arg0, arg1) {
|
|
4387
|
+
const ret = arg1.slice();
|
|
4388
|
+
const ptr1 = passArrayJsValueToWasm0(ret, wasm.__wbindgen_malloc);
|
|
4389
|
+
const len1 = WASM_VECTOR_LEN;
|
|
4390
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
4391
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
4392
|
+
},
|
|
4405
4393
|
__wbg_slice_f3fd3c2bec9310f6: function(arg0, arg1, arg2) {
|
|
4406
4394
|
const ret = arg0.slice(arg1 >>> 0, arg2 >>> 0);
|
|
4407
4395
|
return ret;
|
|
@@ -4690,189 +4678,184 @@ function __wbg_get_imports(memory) {
|
|
|
4690
4678
|
},
|
|
4691
4679
|
__wbindgen_cast_0000000000000001: function(arg0, arg1) {
|
|
4692
4680
|
// Cast intrinsic for `Closure(Closure { dtor_idx: 11017, function: Function { arguments: [NamedExternref("CloseEvent")], shim_idx: 11018, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4693
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
4681
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__web_sys_dd19305f70232297___features__gen_CloseEvent__CloseEvent____Output_______, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___web_sys_dd19305f70232297___features__gen_CloseEvent__CloseEvent______true_);
|
|
4694
4682
|
return ret;
|
|
4695
4683
|
},
|
|
4696
4684
|
__wbindgen_cast_0000000000000002: function(arg0, arg1) {
|
|
4697
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4698
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
4685
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 129153, function: Function { arguments: [Externref], shim_idx: 129154, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4686
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__wasm_bindgen_37b2aef40228fbc7___JsValue____Output________1_, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__2_);
|
|
4699
4687
|
return ret;
|
|
4700
4688
|
},
|
|
4701
4689
|
__wbindgen_cast_0000000000000003: function(arg0, arg1) {
|
|
4702
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4703
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
4690
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 129153, function: Function { arguments: [NamedExternref("GPUUncapturedErrorEvent")], shim_idx: 129154, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4691
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__wasm_bindgen_37b2aef40228fbc7___JsValue____Output________1_, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__2__2);
|
|
4704
4692
|
return ret;
|
|
4705
4693
|
},
|
|
4706
4694
|
__wbindgen_cast_0000000000000004: function(arg0, arg1) {
|
|
4707
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4708
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
4695
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 136422, function: Function { arguments: [Externref], shim_idx: 136423, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4696
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__wasm_bindgen_37b2aef40228fbc7___JsValue____Output________2_, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__3_);
|
|
4709
4697
|
return ret;
|
|
4710
4698
|
},
|
|
4711
4699
|
__wbindgen_cast_0000000000000005: function(arg0, arg1) {
|
|
4712
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4713
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
4700
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 137675, function: Function { arguments: [], shim_idx: 137676, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4701
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut_____Output________3_, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke_______true__4_);
|
|
4714
4702
|
return ret;
|
|
4715
4703
|
},
|
|
4716
4704
|
__wbindgen_cast_0000000000000006: function(arg0, arg1) {
|
|
4717
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4718
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
4705
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 144528, function: Function { arguments: [Externref], shim_idx: 144529, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
|
|
4706
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__wasm_bindgen_37b2aef40228fbc7___JsValue____Output___core_b1d35abfa360d765___result__Result_____wasm_bindgen_37b2aef40228fbc7___JsError___, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue__core_b1d35abfa360d765___result__Result_____wasm_bindgen_37b2aef40228fbc7___JsError___true_);
|
|
4719
4707
|
return ret;
|
|
4720
4708
|
},
|
|
4721
4709
|
__wbindgen_cast_0000000000000007: function(arg0, arg1) {
|
|
4722
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4723
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
4710
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 144528, function: Function { arguments: [NamedExternref("MessageEvent")], shim_idx: 144531, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4711
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__wasm_bindgen_37b2aef40228fbc7___JsValue____Output___core_b1d35abfa360d765___result__Result_____wasm_bindgen_37b2aef40228fbc7___JsError___, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___web_sys_dd19305f70232297___features__gen_MessageEvent__MessageEvent______true_);
|
|
4724
4712
|
return ret;
|
|
4725
4713
|
},
|
|
4726
4714
|
__wbindgen_cast_0000000000000008: function(arg0, arg1) {
|
|
4727
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4728
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
4715
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 28891, function: Function { arguments: [F64, Externref], shim_idx: 28892, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4716
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__f64__wasm_bindgen_37b2aef40228fbc7___JsValue___Output_______, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___f64__wasm_bindgen_37b2aef40228fbc7___JsValue______true_);
|
|
4729
4717
|
return ret;
|
|
4730
4718
|
},
|
|
4731
4719
|
__wbindgen_cast_0000000000000009: function(arg0, arg1) {
|
|
4732
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4733
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
4720
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 55447, function: Function { arguments: [Externref], shim_idx: 55448, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
|
|
4721
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__Fn__comms_24732aceb72db229___livekit__web__room_event__RoomEvent____Output_______, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___comms_24732aceb72db229___livekit__web__local_audio_track__LocalAudioTrack__core_b1d35abfa360d765___result__Result_____wasm_bindgen_37b2aef40228fbc7___JsError___true_);
|
|
4734
4722
|
return ret;
|
|
4735
4723
|
},
|
|
4736
4724
|
__wbindgen_cast_000000000000000a: function(arg0, arg1) {
|
|
4737
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4738
|
-
const ret = makeClosure(arg0, arg1, wasm.
|
|
4725
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 55447, function: Function { arguments: [Externref], shim_idx: 55450, ret: Unit, inner_ret: Some(Unit) }, mutable: false }) -> Externref`.
|
|
4726
|
+
const ret = makeClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__Fn__comms_24732aceb72db229___livekit__web__room_event__RoomEvent____Output_______, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___comms_24732aceb72db229___livekit__web__room_event__RoomEvent______true_);
|
|
4739
4727
|
return ret;
|
|
4740
4728
|
},
|
|
4741
4729
|
__wbindgen_cast_000000000000000b: function(arg0, arg1) {
|
|
4742
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4743
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
4730
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 58225, function: Function { arguments: [NamedExternref("CloseEvent")], shim_idx: 58226, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4731
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__web_sys_dd19305f70232297___features__gen_CloseEvent__CloseEvent____Output________1_, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___web_sys_dd19305f70232297___features__gen_CloseEvent__CloseEvent______true__1_);
|
|
4744
4732
|
return ret;
|
|
4745
4733
|
},
|
|
4746
4734
|
__wbindgen_cast_000000000000000c: function(arg0, arg1) {
|
|
4747
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4748
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
4735
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 58331, function: Function { arguments: [], shim_idx: 58332, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4736
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut_____Output_______, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke_______true_);
|
|
4749
4737
|
return ret;
|
|
4750
4738
|
},
|
|
4751
4739
|
__wbindgen_cast_000000000000000d: function(arg0, arg1) {
|
|
4752
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4753
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
4740
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 62695, function: Function { arguments: [], shim_idx: 62696, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4741
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut_____Output________1_, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke_______true__1_);
|
|
4754
4742
|
return ret;
|
|
4755
4743
|
},
|
|
4756
4744
|
__wbindgen_cast_000000000000000e: function(arg0, arg1) {
|
|
4757
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4758
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
4745
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 63047, function: Function { arguments: [], shim_idx: 63048, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4746
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut_____Output________2_, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke_______true__2_);
|
|
4759
4747
|
return ret;
|
|
4760
4748
|
},
|
|
4761
4749
|
__wbindgen_cast_000000000000000f: function(arg0, arg1) {
|
|
4762
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4763
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
4750
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 63083, function: Function { arguments: [Externref], shim_idx: 63084, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4751
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__wasm_bindgen_37b2aef40228fbc7___JsValue____Output_______, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true_);
|
|
4764
4752
|
return ret;
|
|
4765
4753
|
},
|
|
4766
4754
|
__wbindgen_cast_0000000000000010: function(arg0, arg1) {
|
|
4767
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4768
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
4755
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 64149, function: Function { arguments: [NamedExternref("CompositionEvent")], shim_idx: 64150, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4756
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__web_sys_dd19305f70232297___features__gen_InputEvent__InputEvent____Output_______, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___web_sys_dd19305f70232297___features__gen_InputEvent__InputEvent______true_);
|
|
4769
4757
|
return ret;
|
|
4770
4758
|
},
|
|
4771
4759
|
__wbindgen_cast_0000000000000011: function(arg0, arg1) {
|
|
4772
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4773
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
4760
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 64149, function: Function { arguments: [NamedExternref("InputEvent")], shim_idx: 64150, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4761
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__web_sys_dd19305f70232297___features__gen_InputEvent__InputEvent____Output_______, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___web_sys_dd19305f70232297___features__gen_InputEvent__InputEvent______true__16);
|
|
4774
4762
|
return ret;
|
|
4775
4763
|
},
|
|
4776
4764
|
__wbindgen_cast_0000000000000012: function(arg0, arg1) {
|
|
4777
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4778
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
4765
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 64149, function: Function { arguments: [NamedExternref("TouchEvent")], shim_idx: 64150, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4766
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__web_sys_dd19305f70232297___features__gen_InputEvent__InputEvent____Output_______, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___web_sys_dd19305f70232297___features__gen_InputEvent__InputEvent______true__17);
|
|
4779
4767
|
return ret;
|
|
4780
4768
|
},
|
|
4781
4769
|
__wbindgen_cast_0000000000000013: function(arg0, arg1) {
|
|
4782
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4783
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
4770
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 67241, function: Function { arguments: [Externref], shim_idx: 67242, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4771
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__core_b1d35abfa360d765___option__Option_web_sys_dd19305f70232297___features__gen_Blob__Blob_____Output_______, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__1_);
|
|
4784
4772
|
return ret;
|
|
4785
4773
|
},
|
|
4786
4774
|
__wbindgen_cast_0000000000000014: function(arg0, arg1) {
|
|
4787
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4788
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
4775
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 67241, function: Function { arguments: [NamedExternref("Array<any>"), NamedExternref("ResizeObserver")], shim_idx: 67249, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4776
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__core_b1d35abfa360d765___option__Option_web_sys_dd19305f70232297___features__gen_Blob__Blob_____Output_______, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___js_sys_342d9548e43f4e8___Array__web_sys_dd19305f70232297___features__gen_ResizeObserver__ResizeObserver______true_);
|
|
4789
4777
|
return ret;
|
|
4790
4778
|
},
|
|
4791
4779
|
__wbindgen_cast_0000000000000015: function(arg0, arg1) {
|
|
4792
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4793
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
4780
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 67241, function: Function { arguments: [NamedExternref("Array<any>")], shim_idx: 67242, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4781
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__core_b1d35abfa360d765___option__Option_web_sys_dd19305f70232297___features__gen_Blob__Blob_____Output_______, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__1__20);
|
|
4794
4782
|
return ret;
|
|
4795
4783
|
},
|
|
4796
4784
|
__wbindgen_cast_0000000000000016: function(arg0, arg1) {
|
|
4797
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4798
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
4785
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 67241, function: Function { arguments: [NamedExternref("Event")], shim_idx: 67242, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4786
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__core_b1d35abfa360d765___option__Option_web_sys_dd19305f70232297___features__gen_Blob__Blob_____Output_______, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__1__21);
|
|
4799
4787
|
return ret;
|
|
4800
4788
|
},
|
|
4801
4789
|
__wbindgen_cast_0000000000000017: function(arg0, arg1) {
|
|
4802
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4803
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
4790
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 67241, function: Function { arguments: [NamedExternref("FocusEvent")], shim_idx: 67242, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4791
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__core_b1d35abfa360d765___option__Option_web_sys_dd19305f70232297___features__gen_Blob__Blob_____Output_______, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__1__22);
|
|
4804
4792
|
return ret;
|
|
4805
4793
|
},
|
|
4806
4794
|
__wbindgen_cast_0000000000000018: function(arg0, arg1) {
|
|
4807
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4808
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
4795
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 67241, function: Function { arguments: [NamedExternref("KeyboardEvent")], shim_idx: 67242, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4796
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__core_b1d35abfa360d765___option__Option_web_sys_dd19305f70232297___features__gen_Blob__Blob_____Output_______, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__1__23);
|
|
4809
4797
|
return ret;
|
|
4810
4798
|
},
|
|
4811
4799
|
__wbindgen_cast_0000000000000019: function(arg0, arg1) {
|
|
4812
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4813
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
4800
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 67241, function: Function { arguments: [NamedExternref("PageTransitionEvent")], shim_idx: 67242, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4801
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__core_b1d35abfa360d765___option__Option_web_sys_dd19305f70232297___features__gen_Blob__Blob_____Output_______, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__1__24);
|
|
4814
4802
|
return ret;
|
|
4815
4803
|
},
|
|
4816
4804
|
__wbindgen_cast_000000000000001a: function(arg0, arg1) {
|
|
4817
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4818
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
4805
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 67241, function: Function { arguments: [NamedExternref("PointerEvent")], shim_idx: 67242, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4806
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__core_b1d35abfa360d765___option__Option_web_sys_dd19305f70232297___features__gen_Blob__Blob_____Output_______, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__1__25);
|
|
4819
4807
|
return ret;
|
|
4820
4808
|
},
|
|
4821
4809
|
__wbindgen_cast_000000000000001b: function(arg0, arg1) {
|
|
4822
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4823
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
4810
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 67241, function: Function { arguments: [NamedExternref("WheelEvent")], shim_idx: 67242, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4811
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__core_b1d35abfa360d765___option__Option_web_sys_dd19305f70232297___features__gen_Blob__Blob_____Output_______, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__1__26);
|
|
4824
4812
|
return ret;
|
|
4825
4813
|
},
|
|
4826
4814
|
__wbindgen_cast_000000000000001c: function(arg0, arg1) {
|
|
4827
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
4828
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
4829
|
-
return ret;
|
|
4830
|
-
},
|
|
4831
|
-
__wbindgen_cast_000000000000001d: function(arg0, arg1) {
|
|
4832
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx: 67116, function: Function { arguments: [], shim_idx: 67131, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4833
|
-
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_c050fca1e6679df8___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__core_b1d35abfa360d765___option__Option_web_sys_4810301cc3ef8c1f___features__gen_Blob__Blob_____Output_______, wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke_______true__3_);
|
|
4815
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 67241, function: Function { arguments: [], shim_idx: 67257, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
4816
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__core_b1d35abfa360d765___option__Option_web_sys_dd19305f70232297___features__gen_Blob__Blob_____Output_______, wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke_______true__3_);
|
|
4834
4817
|
return ret;
|
|
4835
4818
|
},
|
|
4836
|
-
|
|
4819
|
+
__wbindgen_cast_000000000000001d: function(arg0) {
|
|
4837
4820
|
// Cast intrinsic for `F64 -> Externref`.
|
|
4838
4821
|
const ret = arg0;
|
|
4839
4822
|
return ret;
|
|
4840
4823
|
},
|
|
4841
|
-
|
|
4824
|
+
__wbindgen_cast_000000000000001e: function(arg0) {
|
|
4842
4825
|
// Cast intrinsic for `I64 -> Externref`.
|
|
4843
4826
|
const ret = arg0;
|
|
4844
4827
|
return ret;
|
|
4845
4828
|
},
|
|
4846
|
-
|
|
4829
|
+
__wbindgen_cast_000000000000001f: function(arg0, arg1) {
|
|
4847
4830
|
// Cast intrinsic for `Ref(Slice(U8)) -> NamedExternref("Uint8Array")`.
|
|
4848
4831
|
const ret = getArrayU8FromWasm0(arg0, arg1);
|
|
4849
4832
|
return ret;
|
|
4850
4833
|
},
|
|
4851
|
-
|
|
4834
|
+
__wbindgen_cast_0000000000000020: function(arg0, arg1) {
|
|
4852
4835
|
// Cast intrinsic for `Ref(String) -> Externref`.
|
|
4853
4836
|
const ret = getStringFromWasm0(arg0, arg1);
|
|
4854
4837
|
return ret;
|
|
4855
4838
|
},
|
|
4856
|
-
|
|
4839
|
+
__wbindgen_cast_0000000000000021: function(arg0) {
|
|
4857
4840
|
// Cast intrinsic for `U64 -> Externref`.
|
|
4858
4841
|
const ret = BigInt.asUintN(64, arg0);
|
|
4859
4842
|
return ret;
|
|
4860
4843
|
},
|
|
4861
|
-
|
|
4844
|
+
__wbindgen_cast_0000000000000022: function(arg0, arg1) {
|
|
4862
4845
|
var v0 = getArrayJsValueFromWasm0(arg0, arg1).slice();
|
|
4863
4846
|
wasm.__wbindgen_free(arg0, arg1 * 4, 4);
|
|
4864
4847
|
// Cast intrinsic for `Vector(Externref) -> Externref`.
|
|
4865
4848
|
const ret = v0;
|
|
4866
4849
|
return ret;
|
|
4867
4850
|
},
|
|
4868
|
-
|
|
4851
|
+
__wbindgen_cast_0000000000000023: function(arg0, arg1) {
|
|
4869
4852
|
var v0 = getArrayJsValueFromWasm0(arg0, arg1).slice();
|
|
4870
4853
|
wasm.__wbindgen_free(arg0, arg1 * 4, 4);
|
|
4871
4854
|
// Cast intrinsic for `Vector(NamedExternref("string")) -> Externref`.
|
|
4872
4855
|
const ret = v0;
|
|
4873
4856
|
return ret;
|
|
4874
4857
|
},
|
|
4875
|
-
|
|
4858
|
+
__wbindgen_cast_0000000000000024: function(arg0, arg1) {
|
|
4876
4859
|
var v0 = getArrayU8FromWasm0(arg0, arg1).slice();
|
|
4877
4860
|
wasm.__wbindgen_free(arg0, arg1 * 1, 1);
|
|
4878
4861
|
// Cast intrinsic for `Vector(U8) -> Externref`.
|
|
@@ -5201,130 +5184,126 @@ function __wbg_get_imports(memory) {
|
|
|
5201
5184
|
}
|
|
5202
5185
|
|
|
5203
5186
|
const lAudioContext = (typeof AudioContext !== 'undefined' ? AudioContext : (typeof webkitAudioContext !== 'undefined' ? webkitAudioContext : undefined));
|
|
5204
|
-
function
|
|
5205
|
-
wasm.
|
|
5206
|
-
}
|
|
5207
|
-
|
|
5208
|
-
function wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke_______true_(arg0, arg1) {
|
|
5209
|
-
wasm.wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke_______true_(arg0, arg1);
|
|
5187
|
+
function wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke_______true__4_(arg0, arg1) {
|
|
5188
|
+
wasm.wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke_______true__4_(arg0, arg1);
|
|
5210
5189
|
}
|
|
5211
5190
|
|
|
5212
|
-
function
|
|
5213
|
-
wasm.
|
|
5191
|
+
function wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke_______true_(arg0, arg1) {
|
|
5192
|
+
wasm.wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke_______true_(arg0, arg1);
|
|
5214
5193
|
}
|
|
5215
5194
|
|
|
5216
|
-
function
|
|
5217
|
-
wasm.
|
|
5195
|
+
function wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke_______true__1_(arg0, arg1) {
|
|
5196
|
+
wasm.wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke_______true__1_(arg0, arg1);
|
|
5218
5197
|
}
|
|
5219
5198
|
|
|
5220
|
-
function
|
|
5221
|
-
wasm.
|
|
5199
|
+
function wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke_______true__2_(arg0, arg1) {
|
|
5200
|
+
wasm.wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke_______true__2_(arg0, arg1);
|
|
5222
5201
|
}
|
|
5223
5202
|
|
|
5224
|
-
function
|
|
5225
|
-
wasm.
|
|
5203
|
+
function wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke_______true__3_(arg0, arg1) {
|
|
5204
|
+
wasm.wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke_______true__3_(arg0, arg1);
|
|
5226
5205
|
}
|
|
5227
5206
|
|
|
5228
|
-
function
|
|
5229
|
-
wasm.
|
|
5207
|
+
function wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___web_sys_dd19305f70232297___features__gen_CloseEvent__CloseEvent______true_(arg0, arg1, arg2) {
|
|
5208
|
+
wasm.wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___web_sys_dd19305f70232297___features__gen_CloseEvent__CloseEvent______true_(arg0, arg1, arg2);
|
|
5230
5209
|
}
|
|
5231
5210
|
|
|
5232
|
-
function
|
|
5233
|
-
wasm.
|
|
5211
|
+
function wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__2_(arg0, arg1, arg2) {
|
|
5212
|
+
wasm.wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__2_(arg0, arg1, arg2);
|
|
5234
5213
|
}
|
|
5235
5214
|
|
|
5236
|
-
function
|
|
5237
|
-
wasm.
|
|
5215
|
+
function wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__2__2(arg0, arg1, arg2) {
|
|
5216
|
+
wasm.wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__2__2(arg0, arg1, arg2);
|
|
5238
5217
|
}
|
|
5239
5218
|
|
|
5240
|
-
function
|
|
5241
|
-
wasm.
|
|
5219
|
+
function wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__3_(arg0, arg1, arg2) {
|
|
5220
|
+
wasm.wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__3_(arg0, arg1, arg2);
|
|
5242
5221
|
}
|
|
5243
5222
|
|
|
5244
|
-
function
|
|
5245
|
-
wasm.
|
|
5223
|
+
function wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___web_sys_dd19305f70232297___features__gen_MessageEvent__MessageEvent______true_(arg0, arg1, arg2) {
|
|
5224
|
+
wasm.wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___web_sys_dd19305f70232297___features__gen_MessageEvent__MessageEvent______true_(arg0, arg1, arg2);
|
|
5246
5225
|
}
|
|
5247
5226
|
|
|
5248
|
-
function
|
|
5249
|
-
wasm.
|
|
5227
|
+
function wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___comms_24732aceb72db229___livekit__web__room_event__RoomEvent______true_(arg0, arg1, arg2) {
|
|
5228
|
+
wasm.wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___comms_24732aceb72db229___livekit__web__room_event__RoomEvent______true_(arg0, arg1, arg2);
|
|
5250
5229
|
}
|
|
5251
5230
|
|
|
5252
|
-
function
|
|
5253
|
-
wasm.
|
|
5231
|
+
function wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___web_sys_dd19305f70232297___features__gen_CloseEvent__CloseEvent______true__1_(arg0, arg1, arg2) {
|
|
5232
|
+
wasm.wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___web_sys_dd19305f70232297___features__gen_CloseEvent__CloseEvent______true__1_(arg0, arg1, arg2);
|
|
5254
5233
|
}
|
|
5255
5234
|
|
|
5256
|
-
function
|
|
5257
|
-
wasm.
|
|
5235
|
+
function wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true_(arg0, arg1, arg2) {
|
|
5236
|
+
wasm.wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true_(arg0, arg1, arg2);
|
|
5258
5237
|
}
|
|
5259
5238
|
|
|
5260
|
-
function
|
|
5261
|
-
wasm.
|
|
5239
|
+
function wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___web_sys_dd19305f70232297___features__gen_InputEvent__InputEvent______true_(arg0, arg1, arg2) {
|
|
5240
|
+
wasm.wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___web_sys_dd19305f70232297___features__gen_InputEvent__InputEvent______true_(arg0, arg1, arg2);
|
|
5262
5241
|
}
|
|
5263
5242
|
|
|
5264
|
-
function
|
|
5265
|
-
wasm.
|
|
5243
|
+
function wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___web_sys_dd19305f70232297___features__gen_InputEvent__InputEvent______true__16(arg0, arg1, arg2) {
|
|
5244
|
+
wasm.wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___web_sys_dd19305f70232297___features__gen_InputEvent__InputEvent______true__16(arg0, arg1, arg2);
|
|
5266
5245
|
}
|
|
5267
5246
|
|
|
5268
|
-
function
|
|
5269
|
-
wasm.
|
|
5247
|
+
function wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___web_sys_dd19305f70232297___features__gen_InputEvent__InputEvent______true__17(arg0, arg1, arg2) {
|
|
5248
|
+
wasm.wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___web_sys_dd19305f70232297___features__gen_InputEvent__InputEvent______true__17(arg0, arg1, arg2);
|
|
5270
5249
|
}
|
|
5271
5250
|
|
|
5272
|
-
function
|
|
5273
|
-
wasm.
|
|
5251
|
+
function wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__1_(arg0, arg1, arg2) {
|
|
5252
|
+
wasm.wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__1_(arg0, arg1, arg2);
|
|
5274
5253
|
}
|
|
5275
5254
|
|
|
5276
|
-
function
|
|
5277
|
-
wasm.
|
|
5255
|
+
function wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__1__20(arg0, arg1, arg2) {
|
|
5256
|
+
wasm.wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__1__20(arg0, arg1, arg2);
|
|
5278
5257
|
}
|
|
5279
5258
|
|
|
5280
|
-
function
|
|
5281
|
-
wasm.
|
|
5259
|
+
function wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__1__21(arg0, arg1, arg2) {
|
|
5260
|
+
wasm.wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__1__21(arg0, arg1, arg2);
|
|
5282
5261
|
}
|
|
5283
5262
|
|
|
5284
|
-
function
|
|
5285
|
-
wasm.
|
|
5263
|
+
function wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__1__22(arg0, arg1, arg2) {
|
|
5264
|
+
wasm.wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__1__22(arg0, arg1, arg2);
|
|
5286
5265
|
}
|
|
5287
5266
|
|
|
5288
|
-
function
|
|
5289
|
-
wasm.
|
|
5267
|
+
function wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__1__23(arg0, arg1, arg2) {
|
|
5268
|
+
wasm.wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__1__23(arg0, arg1, arg2);
|
|
5290
5269
|
}
|
|
5291
5270
|
|
|
5292
|
-
function
|
|
5293
|
-
wasm.
|
|
5271
|
+
function wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__1__24(arg0, arg1, arg2) {
|
|
5272
|
+
wasm.wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__1__24(arg0, arg1, arg2);
|
|
5294
5273
|
}
|
|
5295
5274
|
|
|
5296
|
-
function
|
|
5297
|
-
wasm.
|
|
5275
|
+
function wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__1__25(arg0, arg1, arg2) {
|
|
5276
|
+
wasm.wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__1__25(arg0, arg1, arg2);
|
|
5298
5277
|
}
|
|
5299
5278
|
|
|
5300
|
-
function
|
|
5301
|
-
wasm.
|
|
5279
|
+
function wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__1__26(arg0, arg1, arg2) {
|
|
5280
|
+
wasm.wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__1__26(arg0, arg1, arg2);
|
|
5302
5281
|
}
|
|
5303
5282
|
|
|
5304
|
-
function
|
|
5305
|
-
const ret = wasm.
|
|
5283
|
+
function wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue__core_b1d35abfa360d765___result__Result_____wasm_bindgen_37b2aef40228fbc7___JsError___true_(arg0, arg1, arg2) {
|
|
5284
|
+
const ret = wasm.wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue__core_b1d35abfa360d765___result__Result_____wasm_bindgen_37b2aef40228fbc7___JsError___true_(arg0, arg1, arg2);
|
|
5306
5285
|
if (ret[1]) {
|
|
5307
5286
|
throw takeFromExternrefTable0(ret[0]);
|
|
5308
5287
|
}
|
|
5309
5288
|
}
|
|
5310
5289
|
|
|
5311
|
-
function
|
|
5312
|
-
const ret = wasm.
|
|
5290
|
+
function wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___comms_24732aceb72db229___livekit__web__local_audio_track__LocalAudioTrack__core_b1d35abfa360d765___result__Result_____wasm_bindgen_37b2aef40228fbc7___JsError___true_(arg0, arg1, arg2) {
|
|
5291
|
+
const ret = wasm.wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___comms_24732aceb72db229___livekit__web__local_audio_track__LocalAudioTrack__core_b1d35abfa360d765___result__Result_____wasm_bindgen_37b2aef40228fbc7___JsError___true_(arg0, arg1, arg2);
|
|
5313
5292
|
if (ret[1]) {
|
|
5314
5293
|
throw takeFromExternrefTable0(ret[0]);
|
|
5315
5294
|
}
|
|
5316
5295
|
}
|
|
5317
5296
|
|
|
5318
|
-
function
|
|
5319
|
-
wasm.
|
|
5297
|
+
function wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___js_sys_342d9548e43f4e8___Array__web_sys_dd19305f70232297___features__gen_ResizeObserver__ResizeObserver______true_(arg0, arg1, arg2, arg3) {
|
|
5298
|
+
wasm.wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___js_sys_342d9548e43f4e8___Array__web_sys_dd19305f70232297___features__gen_ResizeObserver__ResizeObserver______true_(arg0, arg1, arg2, arg3);
|
|
5320
5299
|
}
|
|
5321
5300
|
|
|
5322
|
-
function
|
|
5323
|
-
wasm.
|
|
5301
|
+
function wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___js_sys_342d9548e43f4e8___Function_fn_wasm_bindgen_37b2aef40228fbc7___JsValue_____wasm_bindgen_37b2aef40228fbc7___sys__Undefined___js_sys_342d9548e43f4e8___Function_fn_wasm_bindgen_37b2aef40228fbc7___JsValue_____wasm_bindgen_37b2aef40228fbc7___sys__Undefined_______true_(arg0, arg1, arg2, arg3) {
|
|
5302
|
+
wasm.wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___js_sys_342d9548e43f4e8___Function_fn_wasm_bindgen_37b2aef40228fbc7___JsValue_____wasm_bindgen_37b2aef40228fbc7___sys__Undefined___js_sys_342d9548e43f4e8___Function_fn_wasm_bindgen_37b2aef40228fbc7___JsValue_____wasm_bindgen_37b2aef40228fbc7___sys__Undefined_______true_(arg0, arg1, arg2, arg3);
|
|
5324
5303
|
}
|
|
5325
5304
|
|
|
5326
|
-
function
|
|
5327
|
-
wasm.
|
|
5305
|
+
function wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___f64__wasm_bindgen_37b2aef40228fbc7___JsValue______true_(arg0, arg1, arg2, arg3) {
|
|
5306
|
+
wasm.wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___f64__wasm_bindgen_37b2aef40228fbc7___JsValue______true_(arg0, arg1, arg2, arg3);
|
|
5328
5307
|
}
|
|
5329
5308
|
|
|
5330
5309
|
|
package/pkg/webgpu_build_bg.wasm
CHANGED
|
Binary file
|
|
@@ -151,51 +151,49 @@ export const __wbg_set_audiocaptureoptions_noiseSuppression: (a: number, b: numb
|
|
|
151
151
|
export const __wbg_set_audiocaptureoptions_sampleRate: (a: number, b: number, c: bigint) => void;
|
|
152
152
|
export const __wbg_set_audiocaptureoptions_sampleSize: (a: number, b: number, c: bigint) => void;
|
|
153
153
|
export const __wbg_set_audiocaptureoptions_voiceIsolation: (a: number, b: number) => void;
|
|
154
|
-
export const
|
|
155
|
-
export const
|
|
156
|
-
export const
|
|
157
|
-
export const
|
|
158
|
-
export const
|
|
159
|
-
export const
|
|
160
|
-
export const
|
|
161
|
-
export const
|
|
162
|
-
export const
|
|
163
|
-
export const
|
|
164
|
-
export const
|
|
165
|
-
export const
|
|
166
|
-
export const
|
|
167
|
-
export const
|
|
168
|
-
export const
|
|
169
|
-
export const
|
|
170
|
-
export const
|
|
171
|
-
export const
|
|
172
|
-
export const
|
|
173
|
-
export const
|
|
174
|
-
export const
|
|
175
|
-
export const
|
|
176
|
-
export const
|
|
177
|
-
export const
|
|
178
|
-
export const
|
|
179
|
-
export const
|
|
180
|
-
export const
|
|
181
|
-
export const
|
|
182
|
-
export const
|
|
183
|
-
export const
|
|
184
|
-
export const
|
|
185
|
-
export const
|
|
186
|
-
export const
|
|
187
|
-
export const
|
|
188
|
-
export const
|
|
189
|
-
export const
|
|
190
|
-
export const
|
|
191
|
-
export const
|
|
192
|
-
export const
|
|
193
|
-
export const
|
|
194
|
-
export const
|
|
195
|
-
export const
|
|
196
|
-
export const
|
|
197
|
-
export const wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke_______true__2_: (a: number, b: number) => void;
|
|
198
|
-
export const wasm_bindgen_c050fca1e6679df8___convert__closures_____invoke_______true__3_: (a: number, b: number) => void;
|
|
154
|
+
export const wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__web_sys_dd19305f70232297___features__gen_CloseEvent__CloseEvent____Output_______: (a: number, b: number) => void;
|
|
155
|
+
export const wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__wasm_bindgen_37b2aef40228fbc7___JsValue____Output________1_: (a: number, b: number) => void;
|
|
156
|
+
export const wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__wasm_bindgen_37b2aef40228fbc7___JsValue____Output________2_: (a: number, b: number) => void;
|
|
157
|
+
export const wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut_____Output________3_: (a: number, b: number) => void;
|
|
158
|
+
export const wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__wasm_bindgen_37b2aef40228fbc7___JsValue____Output___core_b1d35abfa360d765___result__Result_____wasm_bindgen_37b2aef40228fbc7___JsError___: (a: number, b: number) => void;
|
|
159
|
+
export const wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__f64__wasm_bindgen_37b2aef40228fbc7___JsValue___Output_______: (a: number, b: number) => void;
|
|
160
|
+
export const wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__Fn__comms_24732aceb72db229___livekit__web__room_event__RoomEvent____Output_______: (a: number, b: number) => void;
|
|
161
|
+
export const wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__web_sys_dd19305f70232297___features__gen_CloseEvent__CloseEvent____Output________1_: (a: number, b: number) => void;
|
|
162
|
+
export const wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut_____Output_______: (a: number, b: number) => void;
|
|
163
|
+
export const wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut_____Output________1_: (a: number, b: number) => void;
|
|
164
|
+
export const wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut_____Output________2_: (a: number, b: number) => void;
|
|
165
|
+
export const wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__wasm_bindgen_37b2aef40228fbc7___JsValue____Output_______: (a: number, b: number) => void;
|
|
166
|
+
export const wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__web_sys_dd19305f70232297___features__gen_InputEvent__InputEvent____Output_______: (a: number, b: number) => void;
|
|
167
|
+
export const wasm_bindgen_37b2aef40228fbc7___closure__destroy___dyn_core_b1d35abfa360d765___ops__function__FnMut__core_b1d35abfa360d765___option__Option_web_sys_dd19305f70232297___features__gen_Blob__Blob_____Output_______: (a: number, b: number) => void;
|
|
168
|
+
export const wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___f64__wasm_bindgen_37b2aef40228fbc7___JsValue______true_: (a: number, b: number, c: number, d: any) => void;
|
|
169
|
+
export const wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue__core_b1d35abfa360d765___result__Result_____wasm_bindgen_37b2aef40228fbc7___JsError___true_: (a: number, b: number, c: any) => [number, number];
|
|
170
|
+
export const wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___comms_24732aceb72db229___livekit__web__local_audio_track__LocalAudioTrack__core_b1d35abfa360d765___result__Result_____wasm_bindgen_37b2aef40228fbc7___JsError___true_: (a: number, b: number, c: any) => [number, number];
|
|
171
|
+
export const wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___js_sys_342d9548e43f4e8___Array__web_sys_dd19305f70232297___features__gen_ResizeObserver__ResizeObserver______true_: (a: number, b: number, c: any, d: any) => void;
|
|
172
|
+
export const wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___js_sys_342d9548e43f4e8___Function_fn_wasm_bindgen_37b2aef40228fbc7___JsValue_____wasm_bindgen_37b2aef40228fbc7___sys__Undefined___js_sys_342d9548e43f4e8___Function_fn_wasm_bindgen_37b2aef40228fbc7___JsValue_____wasm_bindgen_37b2aef40228fbc7___sys__Undefined_______true_: (a: number, b: number, c: any, d: any) => void;
|
|
173
|
+
export const wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___web_sys_dd19305f70232297___features__gen_CloseEvent__CloseEvent______true_: (a: number, b: number, c: any) => void;
|
|
174
|
+
export const wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__2_: (a: number, b: number, c: any) => void;
|
|
175
|
+
export const wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__2__2: (a: number, b: number, c: any) => void;
|
|
176
|
+
export const wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__3_: (a: number, b: number, c: any) => void;
|
|
177
|
+
export const wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___web_sys_dd19305f70232297___features__gen_MessageEvent__MessageEvent______true_: (a: number, b: number, c: any) => void;
|
|
178
|
+
export const wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___comms_24732aceb72db229___livekit__web__room_event__RoomEvent______true_: (a: number, b: number, c: any) => void;
|
|
179
|
+
export const wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___web_sys_dd19305f70232297___features__gen_CloseEvent__CloseEvent______true__1_: (a: number, b: number, c: any) => void;
|
|
180
|
+
export const wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true_: (a: number, b: number, c: any) => void;
|
|
181
|
+
export const wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___web_sys_dd19305f70232297___features__gen_InputEvent__InputEvent______true_: (a: number, b: number, c: any) => void;
|
|
182
|
+
export const wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___web_sys_dd19305f70232297___features__gen_InputEvent__InputEvent______true__16: (a: number, b: number, c: any) => void;
|
|
183
|
+
export const wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___web_sys_dd19305f70232297___features__gen_InputEvent__InputEvent______true__17: (a: number, b: number, c: any) => void;
|
|
184
|
+
export const wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__1_: (a: number, b: number, c: any) => void;
|
|
185
|
+
export const wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__1__20: (a: number, b: number, c: any) => void;
|
|
186
|
+
export const wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__1__21: (a: number, b: number, c: any) => void;
|
|
187
|
+
export const wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__1__22: (a: number, b: number, c: any) => void;
|
|
188
|
+
export const wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__1__23: (a: number, b: number, c: any) => void;
|
|
189
|
+
export const wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__1__24: (a: number, b: number, c: any) => void;
|
|
190
|
+
export const wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__1__25: (a: number, b: number, c: any) => void;
|
|
191
|
+
export const wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke___wasm_bindgen_37b2aef40228fbc7___JsValue______true__1__26: (a: number, b: number, c: any) => void;
|
|
192
|
+
export const wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke_______true__4_: (a: number, b: number) => void;
|
|
193
|
+
export const wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke_______true_: (a: number, b: number) => void;
|
|
194
|
+
export const wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke_______true__1_: (a: number, b: number) => void;
|
|
195
|
+
export const wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke_______true__2_: (a: number, b: number) => void;
|
|
196
|
+
export const wasm_bindgen_37b2aef40228fbc7___convert__closures_____invoke_______true__3_: (a: number, b: number) => void;
|
|
199
197
|
export const memory: WebAssembly.Memory;
|
|
200
198
|
export const __wbindgen_malloc: (a: number, b: number) => number;
|
|
201
199
|
export const __wbindgen_realloc: (a: number, b: number, c: number, d: number) => number;
|