@rerun-io/web-viewer 0.30.0 → 0.31.0-alpha.1

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/README.md CHANGED
@@ -28,7 +28,7 @@ This means that:
28
28
 
29
29
  ## Usage
30
30
 
31
- The entrypoint for this packages is the [`WebViewer`](https://ref.rerun.io/docs/js/0.30.0/web-viewer/classes/WebViewer.html) class.
31
+ The entrypoint for this packages is the [`WebViewer`](https://ref.rerun.io/docs/js/0.31.0-alpha.1/web-viewer/classes/WebViewer.html) class.
32
32
  The web viewer is an object which manages a canvas element:
33
33
 
34
34
  ```js
@@ -44,7 +44,7 @@ viewer.stop();
44
44
  ```
45
45
 
46
46
  The `rrd` in the snippet above should be a URL pointing to either:
47
- - A hosted `.rrd` file, such as <https://app.rerun.io/version/0.30.0/examples/dna.rrd>
47
+ - A hosted `.rrd` file, such as <https://app.rerun.io/version/0.31.0-alpha.1/examples/dna.rrd>
48
48
  - A gRPC connection to the SDK opened via the [`serve`](https://www.rerun.io/docs/reference/sdk/operating-modes#serve) API
49
49
 
50
50
  If `rrd` is not set, the Viewer will display the same welcome screen as <https://app.rerun.io>.
package/index.d.ts CHANGED
@@ -198,7 +198,7 @@ export type EventsWithoutValue = {
198
198
  * ```
199
199
  *
200
200
  * Data may be provided to the Viewer as:
201
- * - An HTTP file URL, e.g. `viewer.start("https://app.rerun.io/version/0.30.0/examples/dna.rrd")`
201
+ * - An HTTP file URL, e.g. `viewer.start("https://app.rerun.io/version/0.31.0-alpha.1/examples/dna.rrd")`
202
202
  * - A Rerun gRPC URL, e.g. `viewer.start("rerun+http://127.0.0.1:9876/proxy")`
203
203
  * - A stream of log messages, via {@link WebViewer.open_channel}.
204
204
  *
package/index.js CHANGED
@@ -53,7 +53,7 @@ function delay(ms) {
53
53
  * ```
54
54
  *
55
55
  * Data may be provided to the Viewer as:
56
- * - An HTTP file URL, e.g. `viewer.start("https://app.rerun.io/version/0.30.0/examples/dna.rrd")`
56
+ * - An HTTP file URL, e.g. `viewer.start("https://app.rerun.io/version/0.31.0-alpha.1/examples/dna.rrd")`
57
57
  * - A Rerun gRPC URL, e.g. `viewer.start("rerun+http://127.0.0.1:9876/proxy")`
58
58
  * - A stream of log messages, via {@link WebViewer.open_channel}.
59
59
  *
package/index.ts CHANGED
@@ -316,7 +316,7 @@ function delay(ms: number) {
316
316
  * ```
317
317
  *
318
318
  * Data may be provided to the Viewer as:
319
- * - An HTTP file URL, e.g. `viewer.start("https://app.rerun.io/version/0.30.0/examples/dna.rrd")`
319
+ * - An HTTP file URL, e.g. `viewer.start("https://app.rerun.io/version/0.31.0-alpha.1/examples/dna.rrd")`
320
320
  * - A Rerun gRPC URL, e.g. `viewer.start("rerun+http://127.0.0.1:9876/proxy")`
321
321
  * - A stream of log messages, via {@link WebViewer.open_channel}.
322
322
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rerun-io/web-viewer",
3
- "version": "0.30.0",
3
+ "version": "0.31.0-alpha.1",
4
4
  "description": "Embed the Rerun web viewer in your app",
5
5
  "licenses": [
6
6
  {
package/re_viewer.d.ts CHANGED
@@ -1,182 +1,197 @@
1
1
 
2
2
  declare namespace wasm_bindgen {
3
- /* tslint:disable */
4
- /* eslint-disable */
5
- /**
6
- * The `ReadableStreamType` enum.
7
- *
8
- * *This API requires the following crate features to be activated: `ReadableStreamType`*
9
- */
10
- type ReadableStreamType = "bytes";
11
- export class IntoUnderlyingByteSource {
12
- private constructor();
13
- free(): void;
14
- start(controller: ReadableByteStreamController): void;
15
- pull(controller: ReadableByteStreamController): Promise<any>;
16
- cancel(): void;
17
- readonly type: ReadableStreamType;
18
- readonly autoAllocateChunkSize: number;
19
- }
20
- export class IntoUnderlyingSink {
21
- private constructor();
22
- free(): void;
23
- write(chunk: any): Promise<any>;
24
- close(): Promise<any>;
25
- abort(reason: any): Promise<any>;
26
- }
27
- export class IntoUnderlyingSource {
28
- private constructor();
29
- free(): void;
30
- pull(controller: ReadableStreamDefaultController): Promise<any>;
31
- cancel(): void;
32
- }
33
- export class WebHandle {
34
- free(): void;
35
- constructor(app_options: any);
36
- start(canvas: any): Promise<void>;
37
- toggle_panel_overrides(value?: boolean | null): void;
38
- override_panel_state(panel: string, state?: string | null): void;
39
- destroy(): void;
40
- has_panicked(): boolean;
41
- panic_message(): string | undefined;
42
- panic_callstack(): string | undefined;
43
- /**
44
- * Add a new receiver streaming data from the given url.
45
- *
46
- * If `follow` is `true`, and the url is an HTTP source or file path,
47
- * the viewer will open the stream
48
- * in `Following` mode rather than `Playing` mode.
49
- *
50
- * Websocket streams are always opened in `Following` mode.
51
- *
52
- * It is an error to open a channel twice with the same id.
53
- */
54
- add_receiver(url: string, follow?: boolean | null): void;
55
- remove_receiver(url: string): void;
56
- /**
57
- * Open a new channel for streaming data.
58
- *
59
- * It is an error to open a channel twice with the same id.
60
- */
61
- open_channel(id: string, channel_name: string): void;
62
- /**
63
- * Close an existing channel for streaming data.
64
- *
65
- * No-op if the channel is already closed.
66
- */
67
- close_channel(id: string): void;
68
- /**
69
- * Add an rrd to the viewer directly from a byte array.
70
- */
71
- send_rrd_to_channel(id: string, data: Uint8Array): void;
72
- send_table_to_channel(id: string, data: Uint8Array): void;
73
- get_active_recording_id(): string | undefined;
74
- set_active_recording_id(recording_id: string): void;
75
- get_active_timeline(recording_id: string): string | undefined;
76
- /**
77
- * Set the active timeline.
78
- *
79
- * This does nothing if the timeline can't be found.
80
- */
81
- set_active_timeline(recording_id: string, timeline_name: string): void;
82
- get_time_for_timeline(recording_id: string, timeline_name: string): number | undefined;
83
- set_time_for_timeline(recording_id: string, timeline_name: string, time: number): void;
84
- get_timeline_time_range(recording_id: string, timeline_name: string): any;
85
- get_playing(recording_id: string): boolean | undefined;
86
- set_playing(recording_id: string, value: boolean): void;
87
- set_credentials(access_token: string, email: string): void;
88
- }
89
-
90
- }
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ /**
6
+ * The `ReadableStreamType` enum.
7
+ *
8
+ * *This API requires the following crate features to be activated: `ReadableStreamType`*
9
+ */
10
+
11
+ type ReadableStreamType = "bytes";
12
+
13
+ export class IntoUnderlyingByteSource {
14
+ private constructor();
15
+ free(): void;
16
+ [Symbol.dispose](): void;
17
+ cancel(): void;
18
+ pull(controller: ReadableByteStreamController): Promise<any>;
19
+ start(controller: ReadableByteStreamController): void;
20
+ readonly autoAllocateChunkSize: number;
21
+ readonly type: ReadableStreamType;
22
+ }
23
+
24
+ export class IntoUnderlyingSink {
25
+ private constructor();
26
+ free(): void;
27
+ [Symbol.dispose](): void;
28
+ abort(reason: any): Promise<any>;
29
+ close(): Promise<any>;
30
+ write(chunk: any): Promise<any>;
31
+ }
91
32
 
33
+ export class IntoUnderlyingSource {
34
+ private constructor();
35
+ free(): void;
36
+ [Symbol.dispose](): void;
37
+ cancel(): void;
38
+ pull(controller: ReadableStreamDefaultController): Promise<any>;
39
+ }
40
+
41
+ export class WebHandle {
42
+ free(): void;
43
+ [Symbol.dispose](): void;
44
+ /**
45
+ * Add a new receiver streaming data from the given url.
46
+ *
47
+ * If `follow` is `true`, and the url is an HTTP source or file path,
48
+ * the viewer will open the stream
49
+ * in `Following` mode rather than `Playing` mode.
50
+ *
51
+ * Websocket streams are always opened in `Following` mode.
52
+ *
53
+ * It is an error to open a channel twice with the same id.
54
+ */
55
+ add_receiver(url: string, follow?: boolean | null): void;
56
+ /**
57
+ * Close an existing channel for streaming data.
58
+ *
59
+ * No-op if the channel is already closed.
60
+ */
61
+ close_channel(id: string): void;
62
+ destroy(): void;
63
+ get_active_recording_id(): string | undefined;
64
+ get_active_timeline(recording_id: string): string | undefined;
65
+ get_playing(recording_id: string): boolean | undefined;
66
+ get_time_for_timeline(recording_id: string, timeline_name: string): number | undefined;
67
+ get_timeline_time_range(recording_id: string, timeline_name: string): any;
68
+ has_panicked(): boolean;
69
+ constructor(app_options: any);
70
+ /**
71
+ * Open a new channel for streaming data.
72
+ *
73
+ * It is an error to open a channel twice with the same id.
74
+ */
75
+ open_channel(id: string, channel_name: string): void;
76
+ override_panel_state(panel: string, state?: string | null): void;
77
+ panic_callstack(): string | undefined;
78
+ panic_message(): string | undefined;
79
+ remove_receiver(url: string): void;
80
+ /**
81
+ * Add an rrd to the viewer directly from a byte array.
82
+ */
83
+ send_rrd_to_channel(id: string, data: Uint8Array): void;
84
+ send_table_to_channel(id: string, data: Uint8Array): void;
85
+ set_active_recording_id(recording_id: string): void;
86
+ /**
87
+ * Set the active timeline.
88
+ *
89
+ * This does nothing if the timeline can't be found.
90
+ */
91
+ set_active_timeline(recording_id: string, timeline_name: string): void;
92
+ set_credentials(access_token: string, email: string): void;
93
+ set_playing(recording_id: string, value: boolean): void;
94
+ set_time_for_timeline(recording_id: string, timeline_name: string, time: number): void;
95
+ start(canvas: any): Promise<void>;
96
+ toggle_panel_overrides(value?: boolean | null): void;
97
+ }
98
+
99
+ }
92
100
  declare type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembly.Module;
93
101
 
94
102
  declare interface InitOutput {
95
- readonly memory: WebAssembly.Memory;
96
- readonly __wbg_webhandle_free: (a: number, b: number) => void;
97
- readonly webhandle_new: (a: any) => [number, number, number];
98
- readonly webhandle_start: (a: number, b: any) => any;
99
- readonly webhandle_toggle_panel_overrides: (a: number, b: number) => void;
100
- readonly webhandle_override_panel_state: (a: number, b: number, c: number, d: number, e: number) => [number, number];
101
- readonly webhandle_destroy: (a: number) => void;
102
- readonly webhandle_has_panicked: (a: number) => number;
103
- readonly webhandle_panic_message: (a: number) => [number, number];
104
- readonly webhandle_panic_callstack: (a: number) => [number, number];
105
- readonly webhandle_add_receiver: (a: number, b: number, c: number, d: number) => void;
106
- readonly webhandle_remove_receiver: (a: number, b: number, c: number) => void;
107
- readonly webhandle_open_channel: (a: number, b: number, c: number, d: number, e: number) => void;
108
- readonly webhandle_close_channel: (a: number, b: number, c: number) => void;
109
- readonly webhandle_send_rrd_to_channel: (a: number, b: number, c: number, d: number, e: number) => void;
110
- readonly webhandle_send_table_to_channel: (a: number, b: number, c: number, d: number, e: number) => void;
111
- readonly webhandle_get_active_recording_id: (a: number) => [number, number];
112
- readonly webhandle_set_active_recording_id: (a: number, b: number, c: number) => void;
113
- readonly webhandle_get_active_timeline: (a: number, b: number, c: number) => [number, number];
114
- readonly webhandle_set_active_timeline: (a: number, b: number, c: number, d: number, e: number) => void;
115
- readonly webhandle_get_time_for_timeline: (a: number, b: number, c: number, d: number, e: number) => [number, number];
116
- readonly webhandle_set_time_for_timeline: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
117
- readonly webhandle_get_timeline_time_range: (a: number, b: number, c: number, d: number, e: number) => any;
118
- readonly webhandle_get_playing: (a: number, b: number, c: number) => number;
119
- readonly webhandle_set_playing: (a: number, b: number, c: number, d: number) => void;
120
- readonly webhandle_set_credentials: (a: number, b: number, c: number, d: number, e: number) => void;
121
- readonly rust_lz4_wasm_shim_malloc: (a: number) => number;
122
- readonly rust_lz4_wasm_shim_memcmp: (a: number, b: number, c: number) => number;
123
- readonly rust_lz4_wasm_shim_calloc: (a: number, b: number) => number;
124
- readonly rust_lz4_wasm_shim_free: (a: number) => void;
125
- readonly rust_lz4_wasm_shim_memcpy: (a: number, b: number, c: number) => number;
126
- readonly rust_lz4_wasm_shim_memmove: (a: number, b: number, c: number) => number;
127
- readonly rust_lz4_wasm_shim_memset: (a: number, b: number, c: number) => number;
128
- readonly rust_zstd_wasm_shim_qsort: (a: number, b: number, c: number, d: number) => void;
129
- readonly rust_zstd_wasm_shim_malloc: (a: number) => number;
130
- readonly rust_zstd_wasm_shim_memcmp: (a: number, b: number, c: number) => number;
131
- readonly rust_zstd_wasm_shim_calloc: (a: number, b: number) => number;
132
- readonly rust_zstd_wasm_shim_free: (a: number) => void;
133
- readonly rust_zstd_wasm_shim_memcpy: (a: number, b: number, c: number) => number;
134
- readonly rust_zstd_wasm_shim_memmove: (a: number, b: number, c: number) => number;
135
- readonly rust_zstd_wasm_shim_memset: (a: number, b: number, c: number) => number;
136
- readonly __wbg_intounderlyingbytesource_free: (a: number, b: number) => void;
137
- readonly intounderlyingbytesource_type: (a: number) => number;
138
- readonly intounderlyingbytesource_autoAllocateChunkSize: (a: number) => number;
139
- readonly intounderlyingbytesource_start: (a: number, b: any) => void;
140
- readonly intounderlyingbytesource_pull: (a: number, b: any) => any;
141
- readonly intounderlyingbytesource_cancel: (a: number) => void;
142
- readonly __wbg_intounderlyingsource_free: (a: number, b: number) => void;
143
- readonly intounderlyingsource_pull: (a: number, b: any) => any;
144
- readonly intounderlyingsource_cancel: (a: number) => void;
145
- readonly __wbg_intounderlyingsink_free: (a: number, b: number) => void;
146
- readonly intounderlyingsink_write: (a: number, b: any) => any;
147
- readonly intounderlyingsink_close: (a: number) => any;
148
- readonly intounderlyingsink_abort: (a: number, b: any) => any;
149
- readonly ring_core_0_17_14__bn_mul_mont: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
150
- readonly __externref_table_alloc: () => number;
151
- readonly __wbindgen_export_1: WebAssembly.Table;
152
- readonly __wbindgen_exn_store: (a: number) => void;
153
- readonly __wbindgen_malloc: (a: number, b: number) => number;
154
- readonly __wbindgen_realloc: (a: number, b: number, c: number, d: number) => number;
155
- readonly __wbindgen_free: (a: number, b: number, c: number) => void;
156
- readonly __wbindgen_export_6: WebAssembly.Table;
157
- readonly __externref_table_dealloc: (a: number) => void;
158
- readonly closure16_externref_shim_multivalue_shim: (a: number, b: number, c: any) => [number, number];
159
- readonly _dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h106503555543f5d8: (a: number, b: number) => void;
160
- readonly closure3668_externref_shim: (a: number, b: number, c: any) => void;
161
- readonly _dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h963c1ea1f7b255b6: (a: number, b: number) => void;
162
- readonly closure20440_externref_shim: (a: number, b: number, c: any) => void;
163
- readonly _dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h322dd5343fc83880_multivalue_shim: (a: number, b: number) => [number, number];
164
- readonly closure21055_externref_shim: (a: number, b: number, c: any) => void;
165
- readonly closure25043_externref_shim: (a: number, b: number, c: any) => void;
166
- readonly _dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__ha3c47bae686a12fa: (a: number, b: number) => void;
167
- readonly closure29756_externref_shim: (a: number, b: number, c: any) => void;
168
- readonly closure29896_externref_shim: (a: number, b: number, c: any, d: any) => void;
169
- readonly __wbindgen_start: () => void;
103
+ readonly memory: WebAssembly.Memory;
104
+ readonly __wbg_webhandle_free: (a: number, b: number) => void;
105
+ readonly webhandle_add_receiver: (a: number, b: number, c: number, d: number) => void;
106
+ readonly webhandle_close_channel: (a: number, b: number, c: number) => void;
107
+ readonly webhandle_destroy: (a: number) => void;
108
+ readonly webhandle_get_active_recording_id: (a: number) => [number, number];
109
+ readonly webhandle_get_active_timeline: (a: number, b: number, c: number) => [number, number];
110
+ readonly webhandle_get_playing: (a: number, b: number, c: number) => number;
111
+ readonly webhandle_get_time_for_timeline: (a: number, b: number, c: number, d: number, e: number) => [number, number];
112
+ readonly webhandle_get_timeline_time_range: (a: number, b: number, c: number, d: number, e: number) => any;
113
+ readonly webhandle_has_panicked: (a: number) => number;
114
+ readonly webhandle_new: (a: any) => [number, number, number];
115
+ readonly webhandle_open_channel: (a: number, b: number, c: number, d: number, e: number) => void;
116
+ readonly webhandle_override_panel_state: (a: number, b: number, c: number, d: number, e: number) => [number, number];
117
+ readonly webhandle_panic_callstack: (a: number) => [number, number];
118
+ readonly webhandle_panic_message: (a: number) => [number, number];
119
+ readonly webhandle_remove_receiver: (a: number, b: number, c: number) => void;
120
+ readonly webhandle_send_rrd_to_channel: (a: number, b: number, c: number, d: number, e: number) => void;
121
+ readonly webhandle_send_table_to_channel: (a: number, b: number, c: number, d: number, e: number) => void;
122
+ readonly webhandle_set_active_recording_id: (a: number, b: number, c: number) => void;
123
+ readonly webhandle_set_active_timeline: (a: number, b: number, c: number, d: number, e: number) => void;
124
+ readonly webhandle_set_credentials: (a: number, b: number, c: number, d: number, e: number) => void;
125
+ readonly webhandle_set_playing: (a: number, b: number, c: number, d: number) => void;
126
+ readonly webhandle_set_time_for_timeline: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
127
+ readonly webhandle_start: (a: number, b: any) => any;
128
+ readonly webhandle_toggle_panel_overrides: (a: number, b: number) => void;
129
+ readonly rust_lz4_wasm_shim_calloc: (a: number, b: number) => number;
130
+ readonly rust_lz4_wasm_shim_free: (a: number) => void;
131
+ readonly rust_lz4_wasm_shim_malloc: (a: number) => number;
132
+ readonly rust_lz4_wasm_shim_memcmp: (a: number, b: number, c: number) => number;
133
+ readonly rust_lz4_wasm_shim_memcpy: (a: number, b: number, c: number) => number;
134
+ readonly rust_lz4_wasm_shim_memmove: (a: number, b: number, c: number) => number;
135
+ readonly rust_lz4_wasm_shim_memset: (a: number, b: number, c: number) => number;
136
+ readonly rust_zstd_wasm_shim_calloc: (a: number, b: number) => number;
137
+ readonly rust_zstd_wasm_shim_free: (a: number) => void;
138
+ readonly rust_zstd_wasm_shim_malloc: (a: number) => number;
139
+ readonly rust_zstd_wasm_shim_memcmp: (a: number, b: number, c: number) => number;
140
+ readonly rust_zstd_wasm_shim_memcpy: (a: number, b: number, c: number) => number;
141
+ readonly rust_zstd_wasm_shim_memmove: (a: number, b: number, c: number) => number;
142
+ readonly rust_zstd_wasm_shim_memset: (a: number, b: number, c: number) => number;
143
+ readonly rust_zstd_wasm_shim_qsort: (a: number, b: number, c: number, d: number) => void;
144
+ readonly __wbg_intounderlyingbytesource_free: (a: number, b: number) => void;
145
+ readonly __wbg_intounderlyingsink_free: (a: number, b: number) => void;
146
+ readonly __wbg_intounderlyingsource_free: (a: number, b: number) => void;
147
+ readonly intounderlyingbytesource_autoAllocateChunkSize: (a: number) => number;
148
+ readonly intounderlyingbytesource_cancel: (a: number) => void;
149
+ readonly intounderlyingbytesource_pull: (a: number, b: any) => any;
150
+ readonly intounderlyingbytesource_start: (a: number, b: any) => void;
151
+ readonly intounderlyingbytesource_type: (a: number) => number;
152
+ readonly intounderlyingsink_abort: (a: number, b: any) => any;
153
+ readonly intounderlyingsink_close: (a: number) => any;
154
+ readonly intounderlyingsink_write: (a: number, b: any) => any;
155
+ readonly intounderlyingsource_cancel: (a: number) => void;
156
+ readonly intounderlyingsource_pull: (a: number, b: any) => any;
157
+ readonly wasm_bindgen__closure__destroy__h9c372300dbbf748d: (a: number, b: number) => void;
158
+ readonly wasm_bindgen__closure__destroy__h9fb1b776c2c7659f: (a: number, b: number) => void;
159
+ readonly wasm_bindgen__closure__destroy__h78d29b82029ff243: (a: number, b: number) => void;
160
+ readonly wasm_bindgen__closure__destroy__h41b065ca3fbbd589: (a: number, b: number) => void;
161
+ readonly wasm_bindgen__closure__destroy__h5fcc44e918e33183: (a: number, b: number) => void;
162
+ readonly wasm_bindgen__closure__destroy__hc04567db35d69bbb: (a: number, b: number) => void;
163
+ readonly wasm_bindgen__closure__destroy__h7508dffd5ebd1071: (a: number, b: number) => void;
164
+ readonly wasm_bindgen__closure__destroy__h77ba7a5185e317d0: (a: number, b: number) => void;
165
+ readonly wasm_bindgen__closure__destroy__hdf5301baa32f3642: (a: number, b: number) => void;
166
+ readonly wasm_bindgen__convert__closures_____invoke__h42ce9d48ca7db87d: (a: number, b: number, c: any) => [number, number];
167
+ readonly wasm_bindgen__convert__closures_____invoke__h7b69018c055b28d9: (a: number, b: number, c: any, d: any) => void;
168
+ readonly wasm_bindgen__convert__closures_____invoke__h9a5eccc86f8f153c: (a: number, b: number, c: any) => void;
169
+ readonly wasm_bindgen__convert__closures_____invoke__ha1438226ca7a76a8: (a: number, b: number) => [number, number];
170
+ readonly wasm_bindgen__convert__closures_____invoke__h3f988acdcdd10453: (a: number, b: number, c: any) => void;
171
+ readonly wasm_bindgen__convert__closures_____invoke__ha91f2baf891a147a: (a: number, b: number, c: any) => void;
172
+ readonly wasm_bindgen__convert__closures_____invoke__he9e5b44ef7305075: (a: number, b: number, c: any) => void;
173
+ readonly wasm_bindgen__convert__closures_____invoke__ha38c1d38075bdc8f: (a: number, b: number, c: any) => void;
174
+ readonly wasm_bindgen__convert__closures_____invoke__hc85a3452ce972c62: (a: number, b: number) => void;
175
+ readonly wasm_bindgen__convert__closures_____invoke__had4f08a0af1088c9: (a: number, b: number) => void;
176
+ readonly wasm_bindgen__convert__closures_____invoke__h0236d1cdfad95b17: (a: number, b: number) => void;
177
+ readonly __wbindgen_malloc: (a: number, b: number) => number;
178
+ readonly __wbindgen_realloc: (a: number, b: number, c: number, d: number) => number;
179
+ readonly __externref_table_alloc: () => number;
180
+ readonly __wbindgen_externrefs: WebAssembly.Table;
181
+ readonly __wbindgen_exn_store: (a: number) => void;
182
+ readonly __wbindgen_free: (a: number, b: number, c: number) => void;
183
+ readonly __externref_table_dealloc: (a: number) => void;
184
+ readonly __wbindgen_start: () => void;
170
185
  }
171
186
 
172
187
  /**
173
- * If `module_or_path` is {RequestInfo} or {URL}, makes a request and
174
- * for everything else, calls `WebAssembly.instantiate` directly.
175
- *
176
- * @param {{ module_or_path: InitInput | Promise<InitInput> }} module_or_path - Passing `InitInput` directly is deprecated.
177
- *
178
- * @returns {Promise<InitOutput>}
179
- */
188
+ * If `module_or_path` is {RequestInfo} or {URL}, makes a request and
189
+ * for everything else, calls `WebAssembly.instantiate` directly.
190
+ *
191
+ * @param {{ module_or_path: InitInput | Promise<InitInput> }} module_or_path - Passing `InitInput` directly is deprecated.
192
+ *
193
+ * @returns {Promise<InitOutput>}
194
+ */
180
195
  declare function wasm_bindgen (module_or_path: { module_or_path: InitInput | Promise<InitInput> } | InitInput | Promise<InitInput>): Promise<InitOutput>;
181
196
 
182
197
  export type WebHandle = wasm_bindgen.WebHandle;