@dcl-regenesislabs/bevy-explorer-web 0.1.0-19073309167.commit-1bfa906 → 0.1.0-19077895582.commit-4d42ae9
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 +2 -2
- package/package.json +3 -3
- package/pkg/webgpu_build.d.ts +12 -8
- package/pkg/webgpu_build.js +73 -52
- package/pkg/webgpu_build_bg.wasm +0 -0
- package/pkg/webgpu_build_bg.wasm.d.ts +10 -8
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-19077895582.commit-4d42ae9"
|
package/index.html
CHANGED
|
@@ -101,7 +101,7 @@
|
|
|
101
101
|
}
|
|
102
102
|
</style>
|
|
103
103
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" rel="stylesheet">
|
|
104
|
-
<script>window.PUBLIC_URL = "https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-
|
|
104
|
+
<script>window.PUBLIC_URL = "https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-19077895582.commit-4d42ae9";</script>
|
|
105
105
|
</head>
|
|
106
106
|
<body>
|
|
107
107
|
<div id="header" class="container">
|
|
@@ -130,6 +130,6 @@
|
|
|
130
130
|
</div>
|
|
131
131
|
<script src="https://cdn.jsdelivr.net/npm/livekit-client/dist/livekit-client.umd.min.js"></script>
|
|
132
132
|
<script src="https://cdn.jsdelivr.net/npm/hls.js@1"></script>
|
|
133
|
-
<script type="module" src="https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-
|
|
133
|
+
<script type="module" src="https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-19077895582.commit-4d42ae9/main.js"></script>
|
|
134
134
|
</body>
|
|
135
135
|
</html>
|
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-19077895582.commit-4d42ae9",
|
|
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-19077895582.commit-4d42ae9",
|
|
12
|
+
"commit": "4d42ae909fb6855c4483088fa5bae0dffd9d5c59"
|
|
13
13
|
}
|
package/pkg/webgpu_build.d.ts
CHANGED
|
@@ -79,6 +79,8 @@ export function op_set_permanent_permission(state: WorkerContext, level: string,
|
|
|
79
79
|
export function op_get_permanent_permissions(state: WorkerContext, level: string, value?: string | null): Promise<Array<any>>;
|
|
80
80
|
export function op_get_permission_types(arg0: WorkerContext): Array<any>;
|
|
81
81
|
export function op_set_interactable_area(state: WorkerContext, left: number, top: number, right: number, bottom: number): void;
|
|
82
|
+
export function op_get_mic_state(state: WorkerContext): Promise<any>;
|
|
83
|
+
export function op_set_mic_enabled(state: WorkerContext, enabled: boolean): Promise<void>;
|
|
82
84
|
export function op_testing_enabled(op_state: WorkerContext): boolean;
|
|
83
85
|
export function op_log_test_plan(state: WorkerContext, body: any): void;
|
|
84
86
|
export function op_log_test_result(state: WorkerContext, body: any): void;
|
|
@@ -176,6 +178,8 @@ export interface InitOutput {
|
|
|
176
178
|
readonly op_get_permanent_permissions: (a: number, b: number, c: number, d: number, e: number) => any;
|
|
177
179
|
readonly op_get_permission_types: (a: number) => any;
|
|
178
180
|
readonly op_set_interactable_area: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
181
|
+
readonly op_get_mic_state: (a: number) => any;
|
|
182
|
+
readonly op_set_mic_enabled: (a: number, b: number) => any;
|
|
179
183
|
readonly op_testing_enabled: (a: number) => number;
|
|
180
184
|
readonly op_log_test_plan: (a: number, b: any) => void;
|
|
181
185
|
readonly op_log_test_result: (a: number, b: any) => void;
|
|
@@ -200,19 +204,19 @@ export interface InitOutput {
|
|
|
200
204
|
readonly __wbindgen_export_7: WebAssembly.Table;
|
|
201
205
|
readonly __externref_drop_slice: (a: number, b: number) => void;
|
|
202
206
|
readonly __externref_table_dealloc: (a: number) => void;
|
|
203
|
-
readonly
|
|
204
|
-
readonly
|
|
207
|
+
readonly closure15213_externref_shim: (a: number, b: number, c: number, d: any) => void;
|
|
208
|
+
readonly closure47613_externref_shim: (a: number, b: number, c: any) => void;
|
|
205
209
|
readonly _dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__haf6d1d6eca19ebd1: (a: number, b: number) => void;
|
|
206
210
|
readonly _dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h88ef16e697def3fb: (a: number, b: number) => void;
|
|
207
|
-
readonly
|
|
211
|
+
readonly closure51435_externref_shim: (a: number, b: number, c: any) => void;
|
|
208
212
|
readonly _dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h9bfa50ac2770910f: (a: number, b: number) => void;
|
|
209
213
|
readonly _dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__heedd0a6395901798: (a: number, b: number) => void;
|
|
210
|
-
readonly
|
|
214
|
+
readonly closure56478_externref_shim: (a: number, b: number, c: any) => void;
|
|
211
215
|
readonly _dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h0c78161a9a71767b: (a: number, b: number) => void;
|
|
212
|
-
readonly
|
|
213
|
-
readonly
|
|
214
|
-
readonly
|
|
215
|
-
readonly
|
|
216
|
+
readonly closure56491_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
217
|
+
readonly closure116651_externref_shim: (a: number, b: number, c: any) => void;
|
|
218
|
+
readonly closure131682_externref_shim: (a: number, b: number, c: any) => void;
|
|
219
|
+
readonly closure134586_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
216
220
|
readonly __wbindgen_thread_destroy: (a?: number, b?: number, c?: number) => void;
|
|
217
221
|
readonly __wbindgen_start: (a: number) => void;
|
|
218
222
|
}
|
package/pkg/webgpu_build.js
CHANGED
|
@@ -1148,6 +1148,27 @@ export function op_set_interactable_area(state, left, top, right, bottom) {
|
|
|
1148
1148
|
wasm.op_set_interactable_area(state.__wbg_ptr, left, top, right, bottom);
|
|
1149
1149
|
}
|
|
1150
1150
|
|
|
1151
|
+
/**
|
|
1152
|
+
* @param {WorkerContext} state
|
|
1153
|
+
* @returns {Promise<any>}
|
|
1154
|
+
*/
|
|
1155
|
+
export function op_get_mic_state(state) {
|
|
1156
|
+
_assertClass(state, WorkerContext);
|
|
1157
|
+
const ret = wasm.op_get_mic_state(state.__wbg_ptr);
|
|
1158
|
+
return ret;
|
|
1159
|
+
}
|
|
1160
|
+
|
|
1161
|
+
/**
|
|
1162
|
+
* @param {WorkerContext} state
|
|
1163
|
+
* @param {boolean} enabled
|
|
1164
|
+
* @returns {Promise<void>}
|
|
1165
|
+
*/
|
|
1166
|
+
export function op_set_mic_enabled(state, enabled) {
|
|
1167
|
+
_assertClass(state, WorkerContext);
|
|
1168
|
+
const ret = wasm.op_set_mic_enabled(state.__wbg_ptr, enabled);
|
|
1169
|
+
return ret;
|
|
1170
|
+
}
|
|
1171
|
+
|
|
1151
1172
|
/**
|
|
1152
1173
|
* @param {WorkerContext} op_state
|
|
1153
1174
|
* @returns {boolean}
|
|
@@ -1294,11 +1315,11 @@ export function is_super(state) {
|
|
|
1294
1315
|
}
|
|
1295
1316
|
|
|
1296
1317
|
function __wbg_adapter_62(arg0, arg1, arg2, arg3) {
|
|
1297
|
-
wasm.
|
|
1318
|
+
wasm.closure15213_externref_shim(arg0, arg1, arg2, arg3);
|
|
1298
1319
|
}
|
|
1299
1320
|
|
|
1300
1321
|
function __wbg_adapter_65(arg0, arg1, arg2) {
|
|
1301
|
-
wasm.
|
|
1322
|
+
wasm.closure47613_externref_shim(arg0, arg1, arg2);
|
|
1302
1323
|
}
|
|
1303
1324
|
|
|
1304
1325
|
function __wbg_adapter_68(arg0, arg1) {
|
|
@@ -1310,7 +1331,7 @@ function __wbg_adapter_71(arg0, arg1) {
|
|
|
1310
1331
|
}
|
|
1311
1332
|
|
|
1312
1333
|
function __wbg_adapter_74(arg0, arg1, arg2) {
|
|
1313
|
-
wasm.
|
|
1334
|
+
wasm.closure51435_externref_shim(arg0, arg1, arg2);
|
|
1314
1335
|
}
|
|
1315
1336
|
|
|
1316
1337
|
function __wbg_adapter_81(arg0, arg1) {
|
|
@@ -1322,7 +1343,7 @@ function __wbg_adapter_84(arg0, arg1) {
|
|
|
1322
1343
|
}
|
|
1323
1344
|
|
|
1324
1345
|
function __wbg_adapter_87(arg0, arg1, arg2) {
|
|
1325
|
-
wasm.
|
|
1346
|
+
wasm.closure56478_externref_shim(arg0, arg1, arg2);
|
|
1326
1347
|
}
|
|
1327
1348
|
|
|
1328
1349
|
function __wbg_adapter_98(arg0, arg1) {
|
|
@@ -1330,19 +1351,19 @@ function __wbg_adapter_98(arg0, arg1) {
|
|
|
1330
1351
|
}
|
|
1331
1352
|
|
|
1332
1353
|
function __wbg_adapter_105(arg0, arg1, arg2, arg3) {
|
|
1333
|
-
wasm.
|
|
1354
|
+
wasm.closure56491_externref_shim(arg0, arg1, arg2, arg3);
|
|
1334
1355
|
}
|
|
1335
1356
|
|
|
1336
1357
|
function __wbg_adapter_108(arg0, arg1, arg2) {
|
|
1337
|
-
wasm.
|
|
1358
|
+
wasm.closure116651_externref_shim(arg0, arg1, arg2);
|
|
1338
1359
|
}
|
|
1339
1360
|
|
|
1340
1361
|
function __wbg_adapter_111(arg0, arg1, arg2) {
|
|
1341
|
-
wasm.
|
|
1362
|
+
wasm.closure131682_externref_shim(arg0, arg1, arg2);
|
|
1342
1363
|
}
|
|
1343
1364
|
|
|
1344
|
-
function
|
|
1345
|
-
wasm.
|
|
1365
|
+
function __wbg_adapter_1521(arg0, arg1, arg2, arg3) {
|
|
1366
|
+
wasm.closure134586_externref_shim(arg0, arg1, arg2, arg3);
|
|
1346
1367
|
}
|
|
1347
1368
|
|
|
1348
1369
|
const __wbindgen_enum_BinaryType = ["blob", "arraybuffer"];
|
|
@@ -2639,7 +2660,7 @@ function __wbg_get_imports() {
|
|
|
2639
2660
|
const a = state0.a;
|
|
2640
2661
|
state0.a = 0;
|
|
2641
2662
|
try {
|
|
2642
|
-
return
|
|
2663
|
+
return __wbg_adapter_1521(a, state0.b, arg0, arg1);
|
|
2643
2664
|
} finally {
|
|
2644
2665
|
state0.a = a;
|
|
2645
2666
|
}
|
|
@@ -4134,88 +4155,88 @@ function __wbg_get_imports() {
|
|
|
4134
4155
|
const ret = false;
|
|
4135
4156
|
return ret;
|
|
4136
4157
|
};
|
|
4137
|
-
imports.wbg.
|
|
4138
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4158
|
+
imports.wbg.__wbindgen_closure_wrapper149388 = function(arg0, arg1, arg2) {
|
|
4159
|
+
const ret = makeMutClosure(arg0, arg1, 116652, __wbg_adapter_108);
|
|
4139
4160
|
return ret;
|
|
4140
4161
|
};
|
|
4141
|
-
imports.wbg.
|
|
4142
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4162
|
+
imports.wbg.__wbindgen_closure_wrapper169839 = function(arg0, arg1, arg2) {
|
|
4163
|
+
const ret = makeMutClosure(arg0, arg1, 131683, __wbg_adapter_111);
|
|
4143
4164
|
return ret;
|
|
4144
4165
|
};
|
|
4145
|
-
imports.wbg.
|
|
4146
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4166
|
+
imports.wbg.__wbindgen_closure_wrapper169841 = function(arg0, arg1, arg2) {
|
|
4167
|
+
const ret = makeMutClosure(arg0, arg1, 131683, __wbg_adapter_111);
|
|
4147
4168
|
return ret;
|
|
4148
4169
|
};
|
|
4149
|
-
imports.wbg.
|
|
4150
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4170
|
+
imports.wbg.__wbindgen_closure_wrapper20087 = function(arg0, arg1, arg2) {
|
|
4171
|
+
const ret = makeMutClosure(arg0, arg1, 15214, __wbg_adapter_62);
|
|
4151
4172
|
return ret;
|
|
4152
4173
|
};
|
|
4153
|
-
imports.wbg.
|
|
4154
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4174
|
+
imports.wbg.__wbindgen_closure_wrapper63958 = function(arg0, arg1, arg2) {
|
|
4175
|
+
const ret = makeMutClosure(arg0, arg1, 47614, __wbg_adapter_65);
|
|
4155
4176
|
return ret;
|
|
4156
4177
|
};
|
|
4157
|
-
imports.wbg.
|
|
4158
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4178
|
+
imports.wbg.__wbindgen_closure_wrapper64146 = function(arg0, arg1, arg2) {
|
|
4179
|
+
const ret = makeMutClosure(arg0, arg1, 47719, __wbg_adapter_68);
|
|
4159
4180
|
return ret;
|
|
4160
4181
|
};
|
|
4161
|
-
imports.wbg.
|
|
4162
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4182
|
+
imports.wbg.__wbindgen_closure_wrapper68164 = function(arg0, arg1, arg2) {
|
|
4183
|
+
const ret = makeMutClosure(arg0, arg1, 50789, __wbg_adapter_71);
|
|
4163
4184
|
return ret;
|
|
4164
4185
|
};
|
|
4165
|
-
imports.wbg.
|
|
4166
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4186
|
+
imports.wbg.__wbindgen_closure_wrapper70202 = function(arg0, arg1, arg2) {
|
|
4187
|
+
const ret = makeMutClosure(arg0, arg1, 51436, __wbg_adapter_74);
|
|
4167
4188
|
return ret;
|
|
4168
4189
|
};
|
|
4169
|
-
imports.wbg.
|
|
4170
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4190
|
+
imports.wbg.__wbindgen_closure_wrapper70204 = function(arg0, arg1, arg2) {
|
|
4191
|
+
const ret = makeMutClosure(arg0, arg1, 51436, __wbg_adapter_74);
|
|
4171
4192
|
return ret;
|
|
4172
4193
|
};
|
|
4173
|
-
imports.wbg.
|
|
4174
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4194
|
+
imports.wbg.__wbindgen_closure_wrapper70206 = function(arg0, arg1, arg2) {
|
|
4195
|
+
const ret = makeMutClosure(arg0, arg1, 51436, __wbg_adapter_74);
|
|
4175
4196
|
return ret;
|
|
4176
4197
|
};
|
|
4177
|
-
imports.wbg.
|
|
4178
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4198
|
+
imports.wbg.__wbindgen_closure_wrapper74057 = function(arg0, arg1, arg2) {
|
|
4199
|
+
const ret = makeMutClosure(arg0, arg1, 54661, __wbg_adapter_81);
|
|
4179
4200
|
return ret;
|
|
4180
4201
|
};
|
|
4181
|
-
imports.wbg.
|
|
4182
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4202
|
+
imports.wbg.__wbindgen_closure_wrapper74876 = function(arg0, arg1, arg2) {
|
|
4203
|
+
const ret = makeMutClosure(arg0, arg1, 54978, __wbg_adapter_84);
|
|
4183
4204
|
return ret;
|
|
4184
4205
|
};
|
|
4185
|
-
imports.wbg.
|
|
4186
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4206
|
+
imports.wbg.__wbindgen_closure_wrapper77116 = function(arg0, arg1, arg2) {
|
|
4207
|
+
const ret = makeMutClosure(arg0, arg1, 56479, __wbg_adapter_87);
|
|
4187
4208
|
return ret;
|
|
4188
4209
|
};
|
|
4189
|
-
imports.wbg.
|
|
4190
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4210
|
+
imports.wbg.__wbindgen_closure_wrapper77118 = function(arg0, arg1, arg2) {
|
|
4211
|
+
const ret = makeMutClosure(arg0, arg1, 56479, __wbg_adapter_87);
|
|
4191
4212
|
return ret;
|
|
4192
4213
|
};
|
|
4193
|
-
imports.wbg.
|
|
4194
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4214
|
+
imports.wbg.__wbindgen_closure_wrapper77120 = function(arg0, arg1, arg2) {
|
|
4215
|
+
const ret = makeMutClosure(arg0, arg1, 56479, __wbg_adapter_87);
|
|
4195
4216
|
return ret;
|
|
4196
4217
|
};
|
|
4197
|
-
imports.wbg.
|
|
4198
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4218
|
+
imports.wbg.__wbindgen_closure_wrapper77122 = function(arg0, arg1, arg2) {
|
|
4219
|
+
const ret = makeMutClosure(arg0, arg1, 56479, __wbg_adapter_87);
|
|
4199
4220
|
return ret;
|
|
4200
4221
|
};
|
|
4201
|
-
imports.wbg.
|
|
4202
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4222
|
+
imports.wbg.__wbindgen_closure_wrapper77124 = function(arg0, arg1, arg2) {
|
|
4223
|
+
const ret = makeMutClosure(arg0, arg1, 56479, __wbg_adapter_87);
|
|
4203
4224
|
return ret;
|
|
4204
4225
|
};
|
|
4205
|
-
imports.wbg.
|
|
4206
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4226
|
+
imports.wbg.__wbindgen_closure_wrapper77126 = function(arg0, arg1, arg2) {
|
|
4227
|
+
const ret = makeMutClosure(arg0, arg1, 56479, __wbg_adapter_98);
|
|
4207
4228
|
return ret;
|
|
4208
4229
|
};
|
|
4209
|
-
imports.wbg.
|
|
4210
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4230
|
+
imports.wbg.__wbindgen_closure_wrapper77128 = function(arg0, arg1, arg2) {
|
|
4231
|
+
const ret = makeMutClosure(arg0, arg1, 56479, __wbg_adapter_87);
|
|
4211
4232
|
return ret;
|
|
4212
4233
|
};
|
|
4213
|
-
imports.wbg.
|
|
4214
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4234
|
+
imports.wbg.__wbindgen_closure_wrapper77130 = function(arg0, arg1, arg2) {
|
|
4235
|
+
const ret = makeMutClosure(arg0, arg1, 56479, __wbg_adapter_87);
|
|
4215
4236
|
return ret;
|
|
4216
4237
|
};
|
|
4217
|
-
imports.wbg.
|
|
4218
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4238
|
+
imports.wbg.__wbindgen_closure_wrapper77132 = function(arg0, arg1, arg2) {
|
|
4239
|
+
const ret = makeMutClosure(arg0, arg1, 56479, __wbg_adapter_105);
|
|
4219
4240
|
return ret;
|
|
4220
4241
|
};
|
|
4221
4242
|
imports.wbg.__wbindgen_debug_string = function(arg0, arg1) {
|
package/pkg/webgpu_build_bg.wasm
CHANGED
|
Binary file
|
|
@@ -76,6 +76,8 @@ export const op_set_permanent_permission: (a: number, b: number, c: number, d: n
|
|
|
76
76
|
export const op_get_permanent_permissions: (a: number, b: number, c: number, d: number, e: number) => any;
|
|
77
77
|
export const op_get_permission_types: (a: number) => any;
|
|
78
78
|
export const op_set_interactable_area: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
79
|
+
export const op_get_mic_state: (a: number) => any;
|
|
80
|
+
export const op_set_mic_enabled: (a: number, b: number) => any;
|
|
79
81
|
export const op_testing_enabled: (a: number) => number;
|
|
80
82
|
export const op_log_test_plan: (a: number, b: any) => void;
|
|
81
83
|
export const op_log_test_result: (a: number, b: any) => void;
|
|
@@ -100,18 +102,18 @@ export const __wbindgen_free: (a: number, b: number, c: number) => void;
|
|
|
100
102
|
export const __wbindgen_export_7: WebAssembly.Table;
|
|
101
103
|
export const __externref_drop_slice: (a: number, b: number) => void;
|
|
102
104
|
export const __externref_table_dealloc: (a: number) => void;
|
|
103
|
-
export const
|
|
104
|
-
export const
|
|
105
|
+
export const closure15213_externref_shim: (a: number, b: number, c: number, d: any) => void;
|
|
106
|
+
export const closure47613_externref_shim: (a: number, b: number, c: any) => void;
|
|
105
107
|
export const _dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__haf6d1d6eca19ebd1: (a: number, b: number) => void;
|
|
106
108
|
export const _dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h88ef16e697def3fb: (a: number, b: number) => void;
|
|
107
|
-
export const
|
|
109
|
+
export const closure51435_externref_shim: (a: number, b: number, c: any) => void;
|
|
108
110
|
export const _dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h9bfa50ac2770910f: (a: number, b: number) => void;
|
|
109
111
|
export const _dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__heedd0a6395901798: (a: number, b: number) => void;
|
|
110
|
-
export const
|
|
112
|
+
export const closure56478_externref_shim: (a: number, b: number, c: any) => void;
|
|
111
113
|
export const _dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h0c78161a9a71767b: (a: number, b: number) => void;
|
|
112
|
-
export const
|
|
113
|
-
export const
|
|
114
|
-
export const
|
|
115
|
-
export const
|
|
114
|
+
export const closure56491_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
115
|
+
export const closure116651_externref_shim: (a: number, b: number, c: any) => void;
|
|
116
|
+
export const closure131682_externref_shim: (a: number, b: number, c: any) => void;
|
|
117
|
+
export const closure134586_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
116
118
|
export const __wbindgen_thread_destroy: (a?: number, b?: number, c?: number) => void;
|
|
117
119
|
export const __wbindgen_start: (a: number) => void;
|