@dcl-regenesislabs/bevy-explorer-web 0.1.0-23258665161.commit-5a8336d → 0.1.0-23305676484.commit-e2aec51
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/webgpu_build.d.ts +454 -291
- package/pkg/webgpu_build.js +4724 -4466
- package/pkg/webgpu_build_bg.wasm +0 -0
- package/pkg/webgpu_build_bg.wasm.d.ts +47 -19
package/pkg/webgpu_build.d.ts
CHANGED
|
@@ -1,334 +1,497 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
|
+
|
|
4
|
+
export class AudioCaptureOptions {
|
|
5
|
+
private constructor();
|
|
6
|
+
free(): void;
|
|
7
|
+
[Symbol.dispose](): void;
|
|
8
|
+
get autoGainControl(): boolean | undefined;
|
|
9
|
+
set autoGainControl(value: boolean | null | undefined);
|
|
10
|
+
get channelCount(): bigint | undefined;
|
|
11
|
+
set channelCount(value: bigint | null | undefined);
|
|
12
|
+
get echoCancellation(): boolean | undefined;
|
|
13
|
+
set echoCancellation(value: boolean | null | undefined);
|
|
14
|
+
get latency(): number | undefined;
|
|
15
|
+
set latency(value: number | null | undefined);
|
|
16
|
+
get noiseSuppression(): boolean | undefined;
|
|
17
|
+
set noiseSuppression(value: boolean | null | undefined);
|
|
18
|
+
get sampleRate(): bigint | undefined;
|
|
19
|
+
set sampleRate(value: bigint | null | undefined);
|
|
20
|
+
get sampleSize(): bigint | undefined;
|
|
21
|
+
set sampleSize(value: bigint | null | undefined);
|
|
22
|
+
get voiceIsolation(): boolean | undefined;
|
|
23
|
+
set voiceIsolation(value: boolean | null | undefined);
|
|
24
|
+
}
|
|
25
|
+
|
|
3
26
|
/**
|
|
4
|
-
*
|
|
27
|
+
* Chroma subsampling format
|
|
5
28
|
*/
|
|
6
|
-
export
|
|
7
|
-
|
|
8
|
-
|
|
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
|
+
/**
|
|
49
|
+
* Kind of the packet.
|
|
50
|
+
*
|
|
51
|
+
* Keep in track with
|
|
52
|
+
* [https://github.com/livekit/protocol/blob/e7532dfc617d0c920eb905a93b6ca0d3ca4033e9/protobufs/livekit_models.proto#L324]
|
|
53
|
+
*/
|
|
54
|
+
export enum DataPacketKind {
|
|
55
|
+
Reliable = 0,
|
|
56
|
+
Lossy = 1,
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
export class DataPublishOptions {
|
|
60
|
+
private constructor();
|
|
61
|
+
free(): void;
|
|
62
|
+
[Symbol.dispose](): void;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
export class ParticipantSid {
|
|
66
|
+
private constructor();
|
|
67
|
+
free(): void;
|
|
68
|
+
[Symbol.dispose](): void;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
export class WorkerContext {
|
|
72
|
+
private constructor();
|
|
73
|
+
free(): void;
|
|
74
|
+
[Symbol.dispose](): void;
|
|
75
|
+
get_source(): any;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
export function builtin_module(state: WorkerContext, path: string): string;
|
|
79
|
+
|
|
80
|
+
export function drop_context(state: WorkerContext): void;
|
|
81
|
+
|
|
9
82
|
/**
|
|
10
83
|
* Send a console command to the engine from JavaScript.
|
|
11
84
|
* `command_line` is the full command string, e.g. `"/teleport 10 20"`.
|
|
12
85
|
* Returns a Promise that resolves with the command output or rejects with an error message.
|
|
13
86
|
*/
|
|
14
87
|
export function engine_console_command(command_line: string): Promise<any>;
|
|
88
|
+
|
|
89
|
+
export function engine_init(): Promise<any>;
|
|
90
|
+
|
|
91
|
+
export function engine_run(platform: string, realm: string, location: string, system_scene: string, with_thread_loader: boolean, preview: boolean, rabpf: number): void;
|
|
92
|
+
|
|
93
|
+
export function gpu_cache_hash(): string;
|
|
94
|
+
|
|
15
95
|
export function image_processor_init(): void;
|
|
96
|
+
|
|
16
97
|
export function image_processor_run(): Promise<void>;
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
export function
|
|
22
|
-
|
|
98
|
+
|
|
99
|
+
/**
|
|
100
|
+
* call from a separate worker to initialize a channel for asset load processing
|
|
101
|
+
*/
|
|
102
|
+
export function init_asset_load_thread(): void;
|
|
103
|
+
|
|
23
104
|
export function is_super(state: WorkerContext): boolean;
|
|
24
|
-
|
|
25
|
-
export function
|
|
26
|
-
|
|
27
|
-
export function op_webstorage_get(state: WorkerContext, key_name: string): string | undefined;
|
|
28
|
-
export function op_webstorage_remove(state: WorkerContext, key_name: string): void;
|
|
29
|
-
export function op_webstorage_clear(state: WorkerContext): void;
|
|
30
|
-
export function op_webstorage_iterate_keys(state: WorkerContext): string[];
|
|
31
|
-
export function op_webstorage_has(state: WorkerContext, key_name: string): boolean;
|
|
105
|
+
|
|
106
|
+
export function op_change_realm(state: WorkerContext, realm: string, message?: string | null): Promise<boolean>;
|
|
107
|
+
|
|
32
108
|
export function op_check_for_update(state: WorkerContext): Promise<any>;
|
|
33
|
-
|
|
34
|
-
export function
|
|
109
|
+
|
|
110
|
+
export function op_comms_recv_binary(state: WorkerContext): Promise<Array<any>>;
|
|
111
|
+
|
|
112
|
+
export function op_comms_send_binary_single(state: WorkerContext, message: ArrayBuffer, recipient?: string | null): Promise<void>;
|
|
113
|
+
|
|
114
|
+
export function op_comms_send_string(state: WorkerContext, message: string): Promise<void>;
|
|
115
|
+
|
|
116
|
+
export function op_communicated_with_renderer(state: WorkerContext): boolean;
|
|
117
|
+
|
|
118
|
+
export function op_console_command(state: WorkerContext, cmd: string, args: string[]): Promise<string>;
|
|
119
|
+
|
|
120
|
+
export function op_continue_running(state: WorkerContext): boolean;
|
|
121
|
+
|
|
122
|
+
export function op_copy_to_clipboard(op_state: WorkerContext, text: string): Promise<void>;
|
|
123
|
+
|
|
124
|
+
export function op_crdt_recv_from_renderer(op_state: WorkerContext): Promise<Array<any>>;
|
|
125
|
+
|
|
126
|
+
export function op_crdt_send_to_renderer(op_state: WorkerContext, messages: ArrayBuffer): void;
|
|
127
|
+
|
|
128
|
+
export function op_emote(op_state: WorkerContext, emote: string): void;
|
|
129
|
+
|
|
130
|
+
export function op_external_url(state: WorkerContext, url: string): Promise<boolean>;
|
|
131
|
+
|
|
132
|
+
export function op_get_bindings(state: WorkerContext): Promise<any>;
|
|
133
|
+
|
|
35
134
|
export function op_get_chat_stream(state: WorkerContext): Promise<number>;
|
|
36
|
-
|
|
37
|
-
export function
|
|
38
|
-
|
|
39
|
-
export function
|
|
40
|
-
|
|
41
|
-
export function
|
|
42
|
-
|
|
43
|
-
export function op_read_voice_stream(state: WorkerContext, rid: number): Promise<any>;
|
|
135
|
+
|
|
136
|
+
export function op_get_connected_players(state: WorkerContext): Promise<string[]>;
|
|
137
|
+
|
|
138
|
+
export function op_get_current_login(state: WorkerContext): string | undefined;
|
|
139
|
+
|
|
140
|
+
export function op_get_home_scene(state: WorkerContext): Promise<any>;
|
|
141
|
+
|
|
44
142
|
export function op_get_hover_stream(state: WorkerContext): Promise<number>;
|
|
45
|
-
|
|
46
|
-
export function
|
|
47
|
-
|
|
48
|
-
export function
|
|
143
|
+
|
|
144
|
+
export function op_get_mic_state(state: WorkerContext): Promise<any>;
|
|
145
|
+
|
|
146
|
+
export function op_get_permanent_permissions(state: WorkerContext, level: string, value?: string | null): Promise<Array<any>>;
|
|
147
|
+
|
|
49
148
|
export function op_get_permission_request_stream(state: WorkerContext): Promise<number>;
|
|
50
|
-
|
|
149
|
+
|
|
150
|
+
export function op_get_permission_types(arg0: WorkerContext): Array<any>;
|
|
151
|
+
|
|
51
152
|
export function op_get_permission_used_stream(state: WorkerContext): Promise<number>;
|
|
52
|
-
|
|
53
|
-
export function
|
|
54
|
-
|
|
55
|
-
export function
|
|
56
|
-
|
|
57
|
-
export function op_motd(state: WorkerContext): Promise<string>;
|
|
58
|
-
export function op_get_current_login(state: WorkerContext): string | undefined;
|
|
153
|
+
|
|
154
|
+
export function op_get_player_data(state: WorkerContext, id: string): Promise<any>;
|
|
155
|
+
|
|
156
|
+
export function op_get_players_in_scene(state: WorkerContext): Promise<string[]>;
|
|
157
|
+
|
|
59
158
|
export function op_get_previous_login(state: WorkerContext): Promise<string | undefined>;
|
|
159
|
+
|
|
160
|
+
export function op_get_profile_extras(state: WorkerContext): Promise<any>;
|
|
161
|
+
|
|
162
|
+
export function op_get_scene_loading_ui_stream(state: WorkerContext): Promise<number>;
|
|
163
|
+
|
|
164
|
+
export function op_get_system_action_stream(state: WorkerContext): Promise<number>;
|
|
165
|
+
|
|
166
|
+
export function op_get_texture_size(state: WorkerContext, src: string): Promise<any>;
|
|
167
|
+
|
|
168
|
+
export function op_get_user_data(state: WorkerContext): Promise<any>;
|
|
169
|
+
|
|
170
|
+
export function op_get_voice_stream(state: WorkerContext): Promise<number>;
|
|
171
|
+
|
|
60
172
|
export function op_kernel_fetch_headers(state: WorkerContext, uri: string, method?: string | null, meta?: string | null): Promise<Array<any>>;
|
|
61
|
-
|
|
62
|
-
export function op_native_input(state: WorkerContext): Promise<string>;
|
|
63
|
-
export function op_get_bindings(state: WorkerContext): Promise<any>;
|
|
64
|
-
export function op_set_bindings(state: WorkerContext, bindings: any): Promise<void>;
|
|
65
|
-
export function op_console_command(state: WorkerContext, cmd: string, args: string[]): Promise<string>;
|
|
173
|
+
|
|
66
174
|
export function op_live_scene_info(state: WorkerContext): Promise<Array<any>>;
|
|
67
|
-
|
|
68
|
-
export function
|
|
69
|
-
|
|
175
|
+
|
|
176
|
+
export function op_log_test_plan(state: WorkerContext, body: any): void;
|
|
177
|
+
|
|
178
|
+
export function op_log_test_result(state: WorkerContext, body: any): void;
|
|
179
|
+
|
|
180
|
+
export function op_login_cancel(state: WorkerContext): void;
|
|
181
|
+
|
|
182
|
+
export function op_login_guest(state: WorkerContext): void;
|
|
183
|
+
|
|
70
184
|
export function op_login_new_code(state: WorkerContext): Promise<string | undefined>;
|
|
185
|
+
|
|
71
186
|
export function op_login_new_success(state: WorkerContext): Promise<void>;
|
|
72
|
-
|
|
73
|
-
export function
|
|
187
|
+
|
|
188
|
+
export function op_login_previous(state: WorkerContext): Promise<void>;
|
|
189
|
+
|
|
74
190
|
export function op_logout(state: WorkerContext): void;
|
|
75
|
-
|
|
76
|
-
export function
|
|
77
|
-
|
|
78
|
-
export function op_get_player_data(state: WorkerContext, id: string): Promise<any>;
|
|
191
|
+
|
|
192
|
+
export function op_motd(state: WorkerContext): Promise<string>;
|
|
193
|
+
|
|
79
194
|
export function op_move_player_to(op_state: WorkerContext, position: any, camera_target: any, avatar_target: any, duration?: number | null): Promise<boolean>;
|
|
80
|
-
|
|
81
|
-
export function
|
|
82
|
-
|
|
83
|
-
export function op_external_url(state: WorkerContext, url: string): Promise<boolean>;
|
|
84
|
-
export function op_emote(op_state: WorkerContext, emote: string): void;
|
|
85
|
-
export function op_scene_emote(op_state: WorkerContext, emote: string, looping: boolean): Promise<void>;
|
|
195
|
+
|
|
196
|
+
export function op_native_input(state: WorkerContext): Promise<string>;
|
|
197
|
+
|
|
86
198
|
export function op_open_nft_dialog(op_state: WorkerContext, urn: string): Promise<void>;
|
|
87
|
-
|
|
88
|
-
export function
|
|
199
|
+
|
|
200
|
+
export function op_portable_kill(state: WorkerContext, pid: string): Promise<boolean>;
|
|
201
|
+
|
|
202
|
+
export function op_portable_list(state: WorkerContext): Promise<any[]>;
|
|
203
|
+
|
|
204
|
+
export function op_portable_spawn(state: WorkerContext, pid?: string | null, ens?: string | null): Promise<any>;
|
|
205
|
+
|
|
206
|
+
export function op_quit(state: WorkerContext): void;
|
|
207
|
+
|
|
208
|
+
export function op_read_chat_stream(state: WorkerContext, rid: number): Promise<any>;
|
|
209
|
+
|
|
210
|
+
export function op_read_file(op_state: WorkerContext, filename: string): Promise<any>;
|
|
211
|
+
|
|
212
|
+
export function op_read_hover_stream(state: WorkerContext, rid: number): Promise<any>;
|
|
213
|
+
|
|
214
|
+
export function op_read_permission_request_stream(state: WorkerContext, rid: number): Promise<any>;
|
|
215
|
+
|
|
216
|
+
export function op_read_permission_used_stream(state: WorkerContext, rid: number): Promise<any>;
|
|
217
|
+
|
|
218
|
+
export function op_read_scene_loading_ui_stream(state: WorkerContext, rid: number): Promise<any>;
|
|
219
|
+
|
|
220
|
+
export function op_read_system_action_stream(state: WorkerContext, rid: number): Promise<any>;
|
|
221
|
+
|
|
222
|
+
export function op_read_voice_stream(state: WorkerContext, rid: number): Promise<any>;
|
|
223
|
+
|
|
224
|
+
export function op_realm_information(op_state: WorkerContext): Promise<any>;
|
|
225
|
+
|
|
226
|
+
export function op_scene_emote(op_state: WorkerContext, emote: string, looping: boolean): Promise<void>;
|
|
227
|
+
|
|
228
|
+
export function op_scene_information(op_state: WorkerContext): Promise<any>;
|
|
229
|
+
|
|
89
230
|
export function op_send_async(state: WorkerContext, method: string, params: string): Promise<any>;
|
|
90
|
-
|
|
91
|
-
export function
|
|
92
|
-
|
|
93
|
-
export function
|
|
231
|
+
|
|
232
|
+
export function op_send_batch(state: WorkerContext): Array<any>;
|
|
233
|
+
|
|
234
|
+
export function op_send_chat(state: WorkerContext, message: string, channel: string): void;
|
|
235
|
+
|
|
236
|
+
export function op_set_avatar(state: WorkerContext, base: any, equip: any, has_claimed_name: boolean | null | undefined, profile_extras: any): Promise<number>;
|
|
237
|
+
|
|
238
|
+
export function op_set_bindings(state: WorkerContext, bindings: any): Promise<void>;
|
|
239
|
+
|
|
240
|
+
export function op_set_elapsed(state: WorkerContext, elapsed: number): void;
|
|
241
|
+
|
|
242
|
+
export function op_set_home_scene(state: WorkerContext, realm: string, parcel: any): void;
|
|
243
|
+
|
|
244
|
+
export function op_set_interactable_area(state: WorkerContext, left: number, top: number, right: number, bottom: number): void;
|
|
245
|
+
|
|
246
|
+
export function op_set_mic_enabled(state: WorkerContext, enabled: boolean): Promise<void>;
|
|
247
|
+
|
|
248
|
+
export function op_set_permanent_permission(state: WorkerContext, level: string, value: string | null | undefined, permission_type: any, allow: any): void;
|
|
249
|
+
|
|
250
|
+
export function op_set_setting(state: WorkerContext, name: string, val: number): Promise<void>;
|
|
251
|
+
|
|
252
|
+
export function op_set_single_permission(state: WorkerContext, id: number, allow: boolean): void;
|
|
253
|
+
|
|
254
|
+
export function op_settings(state: WorkerContext): Promise<Array<any>>;
|
|
255
|
+
|
|
94
256
|
export function op_signed_fetch_headers(state: WorkerContext, uri: string, method?: string | null): Promise<any>;
|
|
95
|
-
|
|
96
|
-
export function op_crdt_recv_from_renderer(op_state: WorkerContext): Promise<Array<any>>;
|
|
257
|
+
|
|
97
258
|
export function op_subscribe(state: WorkerContext, id: string): void;
|
|
259
|
+
|
|
260
|
+
export function op_take_and_compare_snapshot(state: WorkerContext, name: string, camera_position: any, camera_target: any, snapshot_size: any, method: any): any;
|
|
261
|
+
|
|
262
|
+
export function op_teleport_to(state: WorkerContext, position_x: number, position_y: number): Promise<boolean>;
|
|
263
|
+
|
|
264
|
+
export function op_testing_enabled(op_state: WorkerContext): boolean;
|
|
265
|
+
|
|
266
|
+
export function op_ui_focus(op_state: WorkerContext, apply: boolean, element_id?: string | null): Promise<any>;
|
|
267
|
+
|
|
98
268
|
export function op_unsubscribe(state: WorkerContext, id: string): void;
|
|
99
|
-
|
|
100
|
-
export function
|
|
101
|
-
|
|
102
|
-
export function
|
|
103
|
-
|
|
104
|
-
export function
|
|
269
|
+
|
|
270
|
+
export function op_walk_player_to(op_state: WorkerContext, position: any, stop_threshold: number, timeout?: number | null): Promise<boolean>;
|
|
271
|
+
|
|
272
|
+
export function op_webstorage_clear(state: WorkerContext): void;
|
|
273
|
+
|
|
274
|
+
export function op_webstorage_get(state: WorkerContext, key_name: string): string | undefined;
|
|
275
|
+
|
|
276
|
+
export function op_webstorage_has(state: WorkerContext, key_name: string): boolean;
|
|
277
|
+
|
|
278
|
+
export function op_webstorage_iterate_keys(state: WorkerContext): string[];
|
|
279
|
+
|
|
280
|
+
export function op_webstorage_key(state: WorkerContext, index: number): string | undefined;
|
|
281
|
+
|
|
282
|
+
export function op_webstorage_length(state: WorkerContext): number;
|
|
283
|
+
|
|
284
|
+
export function op_webstorage_remove(state: WorkerContext, key_name: string): void;
|
|
285
|
+
|
|
286
|
+
export function op_webstorage_set(state: WorkerContext, key_name: string, value: string): void;
|
|
287
|
+
|
|
105
288
|
export function op_world_time(op_state: WorkerContext): Promise<any>;
|
|
106
|
-
|
|
107
|
-
export function
|
|
108
|
-
export function op_log_test_result(state: WorkerContext, body: any): void;
|
|
109
|
-
export function op_take_and_compare_snapshot(state: WorkerContext, name: string, camera_position: any, camera_target: any, snapshot_size: any, method: any): any;
|
|
110
|
-
export function op_portable_spawn(state: WorkerContext, pid?: string | null, ens?: string | null): Promise<any>;
|
|
111
|
-
export function op_portable_kill(state: WorkerContext, pid: string): Promise<boolean>;
|
|
112
|
-
export function op_portable_list(state: WorkerContext): Promise<any[]>;
|
|
113
|
-
export function gpu_cache_hash(): string;
|
|
114
|
-
/**
|
|
115
|
-
* Kind of the packet.
|
|
116
|
-
*
|
|
117
|
-
* Keep in track with
|
|
118
|
-
* [https://github.com/livekit/protocol/blob/e7532dfc617d0c920eb905a93b6ca0d3ca4033e9/protobufs/livekit_models.proto#L324]
|
|
119
|
-
*/
|
|
120
|
-
export enum DataPacketKind {
|
|
121
|
-
Reliable = 0,
|
|
122
|
-
Lossy = 1,
|
|
123
|
-
}
|
|
124
|
-
export class AudioCaptureOptions {
|
|
125
|
-
private constructor();
|
|
126
|
-
free(): void;
|
|
127
|
-
get autoGainControl(): boolean | undefined;
|
|
128
|
-
set autoGainControl(value: boolean | null | undefined);
|
|
129
|
-
get channelCount(): bigint | undefined;
|
|
130
|
-
set channelCount(value: bigint | null | undefined);
|
|
131
|
-
get echoCancellation(): boolean | undefined;
|
|
132
|
-
set echoCancellation(value: boolean | null | undefined);
|
|
133
|
-
get latency(): number | undefined;
|
|
134
|
-
set latency(value: number | null | undefined);
|
|
135
|
-
get noiseSuppression(): boolean | undefined;
|
|
136
|
-
set noiseSuppression(value: boolean | null | undefined);
|
|
137
|
-
get voiceIsolation(): boolean | undefined;
|
|
138
|
-
set voiceIsolation(value: boolean | null | undefined);
|
|
139
|
-
get sampleRate(): bigint | undefined;
|
|
140
|
-
set sampleRate(value: bigint | null | undefined);
|
|
141
|
-
get sampleSize(): bigint | undefined;
|
|
142
|
-
set sampleSize(value: bigint | null | undefined);
|
|
143
|
-
}
|
|
144
|
-
export class DataPublishOptions {
|
|
145
|
-
private constructor();
|
|
146
|
-
free(): void;
|
|
147
|
-
}
|
|
148
|
-
export class ParticipantSid {
|
|
149
|
-
private constructor();
|
|
150
|
-
free(): void;
|
|
151
|
-
}
|
|
152
|
-
export class WorkerContext {
|
|
153
|
-
private constructor();
|
|
154
|
-
free(): void;
|
|
155
|
-
get_source(): any;
|
|
156
|
-
}
|
|
289
|
+
|
|
290
|
+
export function wasm_init_scene(): Promise<WorkerContext>;
|
|
157
291
|
|
|
158
292
|
export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembly.Module;
|
|
159
293
|
|
|
160
294
|
export interface InitOutput {
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
295
|
+
readonly engine_console_command: (a: number, b: number) => any;
|
|
296
|
+
readonly engine_init: () => any;
|
|
297
|
+
readonly engine_run: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number, j: number, k: number) => void;
|
|
298
|
+
readonly init_asset_load_thread: () => void;
|
|
299
|
+
readonly __wbg_audiocaptureoptions_free: (a: number, b: number) => void;
|
|
300
|
+
readonly __wbg_datapublishoptions_free: (a: number, b: number) => void;
|
|
301
|
+
readonly __wbg_get_audiocaptureoptions_autoGainControl: (a: number) => number;
|
|
302
|
+
readonly __wbg_get_audiocaptureoptions_channelCount: (a: number) => [number, bigint];
|
|
303
|
+
readonly __wbg_get_audiocaptureoptions_echoCancellation: (a: number) => number;
|
|
304
|
+
readonly __wbg_get_audiocaptureoptions_latency: (a: number) => [number, number];
|
|
305
|
+
readonly __wbg_get_audiocaptureoptions_noiseSuppression: (a: number) => number;
|
|
306
|
+
readonly __wbg_get_audiocaptureoptions_sampleRate: (a: number) => [number, bigint];
|
|
307
|
+
readonly __wbg_get_audiocaptureoptions_sampleSize: (a: number) => [number, bigint];
|
|
308
|
+
readonly __wbg_get_audiocaptureoptions_voiceIsolation: (a: number) => number;
|
|
309
|
+
readonly __wbg_participantsid_free: (a: number, b: number) => void;
|
|
310
|
+
readonly __wbg_set_audiocaptureoptions_autoGainControl: (a: number, b: number) => void;
|
|
311
|
+
readonly __wbg_set_audiocaptureoptions_channelCount: (a: number, b: number, c: bigint) => void;
|
|
312
|
+
readonly __wbg_set_audiocaptureoptions_echoCancellation: (a: number, b: number) => void;
|
|
313
|
+
readonly __wbg_set_audiocaptureoptions_latency: (a: number, b: number, c: number) => void;
|
|
314
|
+
readonly __wbg_set_audiocaptureoptions_noiseSuppression: (a: number, b: number) => void;
|
|
315
|
+
readonly __wbg_set_audiocaptureoptions_sampleRate: (a: number, b: number, c: bigint) => void;
|
|
316
|
+
readonly __wbg_set_audiocaptureoptions_sampleSize: (a: number, b: number, c: bigint) => void;
|
|
317
|
+
readonly __wbg_set_audiocaptureoptions_voiceIsolation: (a: number, b: number) => void;
|
|
318
|
+
readonly image_processor_init: () => void;
|
|
319
|
+
readonly image_processor_run: () => any;
|
|
320
|
+
readonly __wbg_workercontext_free: (a: number, b: number) => void;
|
|
321
|
+
readonly builtin_module: (a: number, b: number, c: number) => [number, number, number, number];
|
|
322
|
+
readonly drop_context: (a: number) => void;
|
|
323
|
+
readonly is_super: (a: number) => number;
|
|
324
|
+
readonly op_change_realm: (a: number, b: number, c: number, d: number, e: number) => any;
|
|
325
|
+
readonly op_check_for_update: (a: number) => any;
|
|
326
|
+
readonly op_comms_recv_binary: (a: number) => any;
|
|
327
|
+
readonly op_comms_send_binary_single: (a: number, b: any, c: number, d: number) => any;
|
|
328
|
+
readonly op_comms_send_string: (a: number, b: number, c: number) => any;
|
|
329
|
+
readonly op_communicated_with_renderer: (a: number) => number;
|
|
330
|
+
readonly op_console_command: (a: number, b: number, c: number, d: number, e: number) => any;
|
|
331
|
+
readonly op_continue_running: (a: number) => number;
|
|
332
|
+
readonly op_copy_to_clipboard: (a: number, b: number, c: number) => any;
|
|
333
|
+
readonly op_crdt_recv_from_renderer: (a: number) => any;
|
|
334
|
+
readonly op_crdt_send_to_renderer: (a: number, b: any) => void;
|
|
335
|
+
readonly op_emote: (a: number, b: number, c: number) => void;
|
|
336
|
+
readonly op_external_url: (a: number, b: number, c: number) => any;
|
|
337
|
+
readonly op_get_bindings: (a: number) => any;
|
|
338
|
+
readonly op_get_chat_stream: (a: number) => any;
|
|
339
|
+
readonly op_get_connected_players: (a: number) => any;
|
|
340
|
+
readonly op_get_current_login: (a: number) => [number, number];
|
|
341
|
+
readonly op_get_home_scene: (a: number) => any;
|
|
342
|
+
readonly op_get_hover_stream: (a: number) => any;
|
|
343
|
+
readonly op_get_mic_state: (a: number) => any;
|
|
344
|
+
readonly op_get_permanent_permissions: (a: number, b: number, c: number, d: number, e: number) => any;
|
|
345
|
+
readonly op_get_permission_request_stream: (a: number) => any;
|
|
346
|
+
readonly op_get_permission_types: (a: number) => any;
|
|
347
|
+
readonly op_get_permission_used_stream: (a: number) => any;
|
|
348
|
+
readonly op_get_player_data: (a: number, b: number, c: number) => any;
|
|
349
|
+
readonly op_get_players_in_scene: (a: number) => any;
|
|
350
|
+
readonly op_get_previous_login: (a: number) => any;
|
|
351
|
+
readonly op_get_profile_extras: (a: number) => any;
|
|
352
|
+
readonly op_get_scene_loading_ui_stream: (a: number) => any;
|
|
353
|
+
readonly op_get_system_action_stream: (a: number) => any;
|
|
354
|
+
readonly op_get_texture_size: (a: number, b: number, c: number) => any;
|
|
355
|
+
readonly op_get_user_data: (a: number) => any;
|
|
356
|
+
readonly op_get_voice_stream: (a: number) => any;
|
|
357
|
+
readonly op_kernel_fetch_headers: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => any;
|
|
358
|
+
readonly op_live_scene_info: (a: number) => any;
|
|
359
|
+
readonly op_log_test_plan: (a: number, b: any) => void;
|
|
360
|
+
readonly op_log_test_result: (a: number, b: any) => void;
|
|
361
|
+
readonly op_login_cancel: (a: number) => void;
|
|
362
|
+
readonly op_login_guest: (a: number) => void;
|
|
363
|
+
readonly op_login_new_code: (a: number) => any;
|
|
364
|
+
readonly op_login_new_success: (a: number) => any;
|
|
365
|
+
readonly op_login_previous: (a: number) => any;
|
|
366
|
+
readonly op_logout: (a: number) => void;
|
|
367
|
+
readonly op_motd: (a: number) => any;
|
|
368
|
+
readonly op_move_player_to: (a: number, b: any, c: any, d: any, e: number) => any;
|
|
369
|
+
readonly op_native_input: (a: number) => any;
|
|
370
|
+
readonly op_open_nft_dialog: (a: number, b: number, c: number) => any;
|
|
371
|
+
readonly op_portable_kill: (a: number, b: number, c: number) => any;
|
|
372
|
+
readonly op_portable_list: (a: number) => any;
|
|
373
|
+
readonly op_portable_spawn: (a: number, b: number, c: number, d: number, e: number) => any;
|
|
374
|
+
readonly op_quit: (a: number) => void;
|
|
375
|
+
readonly op_read_chat_stream: (a: number, b: number) => any;
|
|
376
|
+
readonly op_read_file: (a: number, b: number, c: number) => any;
|
|
377
|
+
readonly op_read_hover_stream: (a: number, b: number) => any;
|
|
378
|
+
readonly op_read_permission_request_stream: (a: number, b: number) => any;
|
|
379
|
+
readonly op_read_permission_used_stream: (a: number, b: number) => any;
|
|
380
|
+
readonly op_read_scene_loading_ui_stream: (a: number, b: number) => any;
|
|
381
|
+
readonly op_read_system_action_stream: (a: number, b: number) => any;
|
|
382
|
+
readonly op_read_voice_stream: (a: number, b: number) => any;
|
|
383
|
+
readonly op_realm_information: (a: number) => any;
|
|
384
|
+
readonly op_scene_emote: (a: number, b: number, c: number, d: number) => any;
|
|
385
|
+
readonly op_scene_information: (a: number) => any;
|
|
386
|
+
readonly op_send_async: (a: number, b: number, c: number, d: number, e: number) => any;
|
|
387
|
+
readonly op_send_batch: (a: number) => any;
|
|
388
|
+
readonly op_send_chat: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
389
|
+
readonly op_set_avatar: (a: number, b: any, c: any, d: number, e: any) => any;
|
|
390
|
+
readonly op_set_bindings: (a: number, b: any) => any;
|
|
391
|
+
readonly op_set_elapsed: (a: number, b: number) => void;
|
|
392
|
+
readonly op_set_home_scene: (a: number, b: number, c: number, d: any) => void;
|
|
393
|
+
readonly op_set_interactable_area: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
394
|
+
readonly op_set_mic_enabled: (a: number, b: number) => any;
|
|
395
|
+
readonly op_set_permanent_permission: (a: number, b: number, c: number, d: number, e: number, f: any, g: any) => [number, number];
|
|
396
|
+
readonly op_set_setting: (a: number, b: number, c: number, d: number) => any;
|
|
397
|
+
readonly op_set_single_permission: (a: number, b: number, c: number) => void;
|
|
398
|
+
readonly op_settings: (a: number) => any;
|
|
399
|
+
readonly op_signed_fetch_headers: (a: number, b: number, c: number, d: number, e: number) => any;
|
|
400
|
+
readonly op_subscribe: (a: number, b: number, c: number) => void;
|
|
401
|
+
readonly op_take_and_compare_snapshot: (a: number, b: number, c: number, d: any, e: any, f: any, g: any) => [number, number, number];
|
|
402
|
+
readonly op_teleport_to: (a: number, b: number, c: number) => any;
|
|
403
|
+
readonly op_testing_enabled: (a: number) => number;
|
|
404
|
+
readonly op_ui_focus: (a: number, b: number, c: number, d: number) => any;
|
|
405
|
+
readonly op_unsubscribe: (a: number, b: number, c: number) => void;
|
|
406
|
+
readonly op_walk_player_to: (a: number, b: any, c: number, d: number) => any;
|
|
407
|
+
readonly op_webstorage_clear: (a: number) => void;
|
|
408
|
+
readonly op_webstorage_get: (a: number, b: number, c: number) => [number, number];
|
|
409
|
+
readonly op_webstorage_has: (a: number, b: number, c: number) => number;
|
|
410
|
+
readonly op_webstorage_iterate_keys: (a: number) => [number, number];
|
|
411
|
+
readonly op_webstorage_key: (a: number, b: number) => [number, number];
|
|
412
|
+
readonly op_webstorage_length: (a: number) => number;
|
|
413
|
+
readonly op_webstorage_remove: (a: number, b: number, c: number) => void;
|
|
414
|
+
readonly op_webstorage_set: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
415
|
+
readonly op_world_time: (a: number) => any;
|
|
416
|
+
readonly wasm_init_scene: () => any;
|
|
417
|
+
readonly workercontext_get_source: (a: number) => any;
|
|
418
|
+
readonly gpu_cache_hash: () => [number, number];
|
|
419
|
+
readonly wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__wasm_bindgen_6c0c3bb491d8811b___JsValue____Output________2_: (a: number, b: number) => void;
|
|
420
|
+
readonly wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__wasm_bindgen_6c0c3bb491d8811b___JsValue____Output________3_: (a: number, b: number) => void;
|
|
421
|
+
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;
|
|
422
|
+
readonly wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__f64__wasm_bindgen_6c0c3bb491d8811b___JsValue___Output_______: (a: number, b: number) => void;
|
|
423
|
+
readonly wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__Fn__comms_d0dbb1e69f98a4c8___livekit__web__room_event__RoomEvent____Output_______: (a: number, b: number) => void;
|
|
424
|
+
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;
|
|
425
|
+
readonly wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output_______: (a: number, b: number) => void;
|
|
426
|
+
readonly wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__wasm_bindgen_6c0c3bb491d8811b___JsValue____Output_______: (a: number, b: number) => void;
|
|
427
|
+
readonly wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output________1_: (a: number, b: number) => void;
|
|
428
|
+
readonly wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__web_sys_72aa5c11aad59394___features__gen_InputEvent__InputEvent____Output_______: (a: number, b: number) => void;
|
|
429
|
+
readonly wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output________2_: (a: number, b: number) => void;
|
|
430
|
+
readonly wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output________3_: (a: number, b: number) => void;
|
|
431
|
+
readonly wasm_bindgen_6c0c3bb491d8811b___closure__destroy___dyn_core_f2710c7f87f75ba1___ops__function__FnMut__wasm_bindgen_6c0c3bb491d8811b___JsValue____Output________1_: (a: number, b: number) => void;
|
|
432
|
+
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;
|
|
433
|
+
readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___f64__wasm_bindgen_6c0c3bb491d8811b___JsValue______true_: (a: number, b: number, c: number, d: any) => void;
|
|
434
|
+
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];
|
|
435
|
+
readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___comms_d0dbb1e69f98a4c8___livekit__web__local_audio_track__LocalAudioTrack__core_f2710c7f87f75ba1___result__Result_____wasm_bindgen_6c0c3bb491d8811b___JsError___true_: (a: number, b: number, c: any) => [number, number];
|
|
436
|
+
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;
|
|
437
|
+
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;
|
|
438
|
+
readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__3_: (a: number, b: number, c: any) => void;
|
|
439
|
+
readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__3__1: (a: number, b: number, c: any) => void;
|
|
440
|
+
readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__4_: (a: number, b: number, c: any) => void;
|
|
441
|
+
readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___web_sys_72aa5c11aad59394___features__gen_MessageEvent__MessageEvent______true_: (a: number, b: number, c: any) => void;
|
|
442
|
+
readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___comms_d0dbb1e69f98a4c8___livekit__web__room_event__RoomEvent______true_: (a: number, b: number, c: any) => void;
|
|
443
|
+
readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___web_sys_72aa5c11aad59394___features__gen_CloseEvent__CloseEvent______true_: (a: number, b: number, c: any) => void;
|
|
444
|
+
readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true_: (a: number, b: number, c: any) => void;
|
|
445
|
+
readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___web_sys_72aa5c11aad59394___features__gen_InputEvent__InputEvent______true_: (a: number, b: number, c: any) => void;
|
|
446
|
+
readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___web_sys_72aa5c11aad59394___features__gen_InputEvent__InputEvent______true__13: (a: number, b: number, c: any) => void;
|
|
447
|
+
readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___web_sys_72aa5c11aad59394___features__gen_InputEvent__InputEvent______true__14: (a: number, b: number, c: any) => void;
|
|
448
|
+
readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__1_: (a: number, b: number, c: any) => void;
|
|
449
|
+
readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__2_: (a: number, b: number, c: any) => void;
|
|
450
|
+
readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__2__20: (a: number, b: number, c: any) => void;
|
|
451
|
+
readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__2__21: (a: number, b: number, c: any) => void;
|
|
452
|
+
readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__2__22: (a: number, b: number, c: any) => void;
|
|
453
|
+
readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__2__23: (a: number, b: number, c: any) => void;
|
|
454
|
+
readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__2__24: (a: number, b: number, c: any) => void;
|
|
455
|
+
readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__2__25: (a: number, b: number, c: any) => void;
|
|
456
|
+
readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke___wasm_bindgen_6c0c3bb491d8811b___JsValue______true__2__26: (a: number, b: number, c: any) => void;
|
|
457
|
+
readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke_______true_: (a: number, b: number) => void;
|
|
458
|
+
readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke_______true__1_: (a: number, b: number) => void;
|
|
459
|
+
readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke_______true__2_: (a: number, b: number) => void;
|
|
460
|
+
readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke_______true__3_: (a: number, b: number) => void;
|
|
461
|
+
readonly wasm_bindgen_6c0c3bb491d8811b___convert__closures_____invoke_______true__4_: (a: number, b: number) => void;
|
|
462
|
+
readonly memory: WebAssembly.Memory;
|
|
463
|
+
readonly __wbindgen_malloc: (a: number, b: number) => number;
|
|
464
|
+
readonly __wbindgen_realloc: (a: number, b: number, c: number, d: number) => number;
|
|
465
|
+
readonly __externref_table_alloc: () => number;
|
|
466
|
+
readonly __wbindgen_externrefs: WebAssembly.Table;
|
|
467
|
+
readonly __wbindgen_exn_store: (a: number) => void;
|
|
468
|
+
readonly __wbindgen_free: (a: number, b: number, c: number) => void;
|
|
469
|
+
readonly __externref_drop_slice: (a: number, b: number) => void;
|
|
470
|
+
readonly __externref_table_dealloc: (a: number) => void;
|
|
471
|
+
readonly __wbindgen_thread_destroy: (a?: number, b?: number, c?: number) => void;
|
|
472
|
+
readonly __wbindgen_start: (a: number) => void;
|
|
311
473
|
}
|
|
312
474
|
|
|
313
475
|
export type SyncInitInput = BufferSource | WebAssembly.Module;
|
|
476
|
+
|
|
314
477
|
/**
|
|
315
|
-
* Instantiates the given `module`, which can either be bytes or
|
|
316
|
-
* a precompiled `WebAssembly.Module`.
|
|
317
|
-
*
|
|
318
|
-
* @param {{ module: SyncInitInput, memory?: WebAssembly.Memory, thread_stack_size?: number }} module - Passing `SyncInitInput` directly is deprecated.
|
|
319
|
-
* @param {WebAssembly.Memory} memory - Deprecated.
|
|
320
|
-
*
|
|
321
|
-
* @returns {InitOutput}
|
|
322
|
-
*/
|
|
478
|
+
* Instantiates the given `module`, which can either be bytes or
|
|
479
|
+
* a precompiled `WebAssembly.Module`.
|
|
480
|
+
*
|
|
481
|
+
* @param {{ module: SyncInitInput, memory?: WebAssembly.Memory, thread_stack_size?: number }} module - Passing `SyncInitInput` directly is deprecated.
|
|
482
|
+
* @param {WebAssembly.Memory} memory - Deprecated.
|
|
483
|
+
*
|
|
484
|
+
* @returns {InitOutput}
|
|
485
|
+
*/
|
|
323
486
|
export function initSync(module: { module: SyncInitInput, memory?: WebAssembly.Memory, thread_stack_size?: number } | SyncInitInput, memory?: WebAssembly.Memory): InitOutput;
|
|
324
487
|
|
|
325
488
|
/**
|
|
326
|
-
* If `module_or_path` is {RequestInfo} or {URL}, makes a request and
|
|
327
|
-
* for everything else, calls `WebAssembly.instantiate` directly.
|
|
328
|
-
*
|
|
329
|
-
* @param {{ module_or_path: InitInput | Promise<InitInput>, memory?: WebAssembly.Memory, thread_stack_size?: number }} module_or_path - Passing `InitInput` directly is deprecated.
|
|
330
|
-
* @param {WebAssembly.Memory} memory - Deprecated.
|
|
331
|
-
*
|
|
332
|
-
* @returns {Promise<InitOutput>}
|
|
333
|
-
*/
|
|
489
|
+
* If `module_or_path` is {RequestInfo} or {URL}, makes a request and
|
|
490
|
+
* for everything else, calls `WebAssembly.instantiate` directly.
|
|
491
|
+
*
|
|
492
|
+
* @param {{ module_or_path: InitInput | Promise<InitInput>, memory?: WebAssembly.Memory, thread_stack_size?: number }} module_or_path - Passing `InitInput` directly is deprecated.
|
|
493
|
+
* @param {WebAssembly.Memory} memory - Deprecated.
|
|
494
|
+
*
|
|
495
|
+
* @returns {Promise<InitOutput>}
|
|
496
|
+
*/
|
|
334
497
|
export default function __wbg_init (module_or_path?: { module_or_path: InitInput | Promise<InitInput>, memory?: WebAssembly.Memory, thread_stack_size?: number } | InitInput | Promise<InitInput>, memory?: WebAssembly.Memory): Promise<InitOutput>;
|