@noir-lang/acvm_js 0.46.0 → 0.47.0-1fabcde.nightly
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/nodejs/acvm_js.d.ts +89 -106
- package/nodejs/acvm_js.js +211 -662
- package/nodejs/acvm_js_bg.wasm +0 -0
- package/nodejs/acvm_js_bg.wasm.d.ts +10 -16
- package/package.json +1 -1
- package/web/acvm_js.d.ts +99 -122
- package/web/acvm_js.js +213 -600
- package/web/acvm_js_bg.wasm +0 -0
- package/web/acvm_js_bg.wasm.d.ts +10 -16
package/nodejs/acvm_js_bg.wasm
CHANGED
|
Binary file
|
|
@@ -2,7 +2,12 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
export const memory: WebAssembly.Memory;
|
|
4
4
|
export function initLogLevel(a: number, b: number, c: number): void;
|
|
5
|
-
export function
|
|
5
|
+
export function getReturnWitness(a: number, b: number, c: number, d: number): void;
|
|
6
|
+
export function getPublicParametersWitness(a: number, b: number, c: number, d: number): void;
|
|
7
|
+
export function getPublicWitness(a: number, b: number, c: number, d: number): void;
|
|
8
|
+
export function executeCircuit(a: number, b: number, c: number, d: number): number;
|
|
9
|
+
export function executeCircuitWithReturnWitness(a: number, b: number, c: number, d: number): number;
|
|
10
|
+
export function executeProgram(a: number, b: number, c: number, d: number): number;
|
|
6
11
|
export function and(a: number, b: number): number;
|
|
7
12
|
export function xor(a: number, b: number): number;
|
|
8
13
|
export function sha256(a: number, b: number, c: number): void;
|
|
@@ -10,28 +15,17 @@ export function blake2s256(a: number, b: number, c: number): void;
|
|
|
10
15
|
export function keccak256(a: number, b: number, c: number): void;
|
|
11
16
|
export function ecdsa_secp256k1_verify(a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number): number;
|
|
12
17
|
export function ecdsa_secp256r1_verify(a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number): number;
|
|
18
|
+
export function buildInfo(): number;
|
|
13
19
|
export function compressWitness(a: number, b: number): void;
|
|
14
20
|
export function decompressWitness(a: number, b: number, c: number): void;
|
|
15
21
|
export function compressWitnessStack(a: number, b: number): void;
|
|
16
22
|
export function decompressWitnessStack(a: number, b: number, c: number): void;
|
|
17
|
-
export function __wbg_wasmblackboxfunctionsolver_free(a: number): void;
|
|
18
|
-
export function createBlackBoxSolver(): number;
|
|
19
|
-
export function executeCircuit(a: number, b: number, c: number, d: number): number;
|
|
20
|
-
export function executeCircuitWithReturnWitness(a: number, b: number, c: number, d: number, e: number): number;
|
|
21
|
-
export function executeCircuitWithBlackBoxSolver(a: number, b: number, c: number, d: number, e: number): number;
|
|
22
|
-
export function executeProgram(a: number, b: number, c: number, d: number): number;
|
|
23
|
-
export function executeProgramWithBlackBoxSolver(a: number, b: number, c: number, d: number, e: number): number;
|
|
24
|
-
export function getReturnWitness(a: number, b: number, c: number, d: number): void;
|
|
25
|
-
export function getPublicParametersWitness(a: number, b: number, c: number, d: number): void;
|
|
26
|
-
export function getPublicWitness(a: number, b: number, c: number, d: number): void;
|
|
27
|
-
export function __wbg_trap_free(a: number): void;
|
|
28
|
-
export function trap___wbg_wasmer_trap(): void;
|
|
29
23
|
export function __wbindgen_malloc(a: number): number;
|
|
30
24
|
export function __wbindgen_realloc(a: number, b: number, c: number): number;
|
|
31
25
|
export const __wbindgen_export_2: WebAssembly.Table;
|
|
32
|
-
export function
|
|
26
|
+
export function _dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h36bac5ff3ea3c380(a: number, b: number, c: number): void;
|
|
33
27
|
export function __wbindgen_add_to_stack_pointer(a: number): number;
|
|
34
28
|
export function __wbindgen_free(a: number, b: number): void;
|
|
29
|
+
export function wasm_bindgen__convert__closures__invoke3_mut__h629417323d5efbaa(a: number, b: number, c: number, d: number, e: number): void;
|
|
35
30
|
export function __wbindgen_exn_store(a: number): void;
|
|
36
|
-
export function
|
|
37
|
-
export function wasm_bindgen__convert__closures__invoke2_mut__h188e918906ff9a40(a: number, b: number, c: number, d: number): void;
|
|
31
|
+
export function wasm_bindgen__convert__closures__invoke2_mut__h4efdd1050cfb3ea7(a: number, b: number, c: number, d: number): void;
|
package/package.json
CHANGED
package/web/acvm_js.d.ts
CHANGED
|
@@ -7,10 +7,66 @@
|
|
|
7
7
|
*/
|
|
8
8
|
export function initLogLevel(filter: string): void;
|
|
9
9
|
/**
|
|
10
|
-
*
|
|
11
|
-
*
|
|
10
|
+
* Extracts a `WitnessMap` containing the witness indices corresponding to the circuit's return values.
|
|
11
|
+
*
|
|
12
|
+
* @param {Uint8Array} circuit - A serialized representation of an ACIR circuit
|
|
13
|
+
* @param {WitnessMap} witness_map - The completed witness map after executing the circuit.
|
|
14
|
+
* @returns {WitnessMap} A witness map containing the circuit's return values.
|
|
15
|
+
* @param {Uint8Array} program
|
|
16
|
+
* @param {WitnessMap} witness_map
|
|
17
|
+
* @returns {WitnessMap}
|
|
12
18
|
*/
|
|
13
|
-
export function
|
|
19
|
+
export function getReturnWitness(program: Uint8Array, witness_map: WitnessMap): WitnessMap;
|
|
20
|
+
/**
|
|
21
|
+
* Extracts a `WitnessMap` containing the witness indices corresponding to the circuit's public parameters.
|
|
22
|
+
*
|
|
23
|
+
* @param {Uint8Array} circuit - A serialized representation of an ACIR circuit
|
|
24
|
+
* @param {WitnessMap} witness_map - The completed witness map after executing the circuit.
|
|
25
|
+
* @returns {WitnessMap} A witness map containing the circuit's public parameters.
|
|
26
|
+
* @param {Uint8Array} program
|
|
27
|
+
* @param {WitnessMap} solved_witness
|
|
28
|
+
* @returns {WitnessMap}
|
|
29
|
+
*/
|
|
30
|
+
export function getPublicParametersWitness(program: Uint8Array, solved_witness: WitnessMap): WitnessMap;
|
|
31
|
+
/**
|
|
32
|
+
* Extracts a `WitnessMap` containing the witness indices corresponding to the circuit's public inputs.
|
|
33
|
+
*
|
|
34
|
+
* @param {Uint8Array} circuit - A serialized representation of an ACIR circuit
|
|
35
|
+
* @param {WitnessMap} witness_map - The completed witness map after executing the circuit.
|
|
36
|
+
* @returns {WitnessMap} A witness map containing the circuit's public inputs.
|
|
37
|
+
* @param {Uint8Array} program
|
|
38
|
+
* @param {WitnessMap} solved_witness
|
|
39
|
+
* @returns {WitnessMap}
|
|
40
|
+
*/
|
|
41
|
+
export function getPublicWitness(program: Uint8Array, solved_witness: WitnessMap): WitnessMap;
|
|
42
|
+
/**
|
|
43
|
+
* Executes an ACIR circuit to generate the solved witness from the initial witness.
|
|
44
|
+
*
|
|
45
|
+
* @param {Uint8Array} circuit - A serialized representation of an ACIR circuit
|
|
46
|
+
* @param {WitnessMap} initial_witness - The initial witness map defining all of the inputs to `circuit`..
|
|
47
|
+
* @param {ForeignCallHandler} foreign_call_handler - A callback to process any foreign calls from the circuit.
|
|
48
|
+
* @returns {WitnessMap} The solved witness calculated by executing the circuit on the provided inputs.
|
|
49
|
+
*/
|
|
50
|
+
export function executeCircuit(program: Uint8Array, initial_witness: WitnessMap, foreign_call_handler: ForeignCallHandler): Promise<WitnessMap>;
|
|
51
|
+
/**
|
|
52
|
+
* Executes an ACIR circuit to generate the solved witness from the initial witness.
|
|
53
|
+
* This method also extracts the public return values from the solved witness into its own return witness.
|
|
54
|
+
*
|
|
55
|
+
* @param {Uint8Array} circuit - A serialized representation of an ACIR circuit
|
|
56
|
+
* @param {WitnessMap} initial_witness - The initial witness map defining all of the inputs to `circuit`..
|
|
57
|
+
* @param {ForeignCallHandler} foreign_call_handler - A callback to process any foreign calls from the circuit.
|
|
58
|
+
* @returns {SolvedAndReturnWitness} The solved witness calculated by executing the circuit on the provided inputs, as well as the return witness indices as specified by the circuit.
|
|
59
|
+
*/
|
|
60
|
+
export function executeCircuitWithReturnWitness(program: Uint8Array, initial_witness: WitnessMap, foreign_call_handler: ForeignCallHandler): Promise<SolvedAndReturnWitness>;
|
|
61
|
+
/**
|
|
62
|
+
* Executes an ACIR circuit to generate the solved witness from the initial witness.
|
|
63
|
+
*
|
|
64
|
+
* @param {Uint8Array} program - A serialized representation of an ACIR program
|
|
65
|
+
* @param {WitnessMap} initial_witness - The initial witness map defining all of the inputs to `program`.
|
|
66
|
+
* @param {ForeignCallHandler} foreign_call_handler - A callback to process any foreign calls from the program.
|
|
67
|
+
* @returns {WitnessStack} The solved witness calculated by executing the program on the provided inputs.
|
|
68
|
+
*/
|
|
69
|
+
export function executeProgram(program: Uint8Array, initial_witness: WitnessMap, foreign_call_handler: ForeignCallHandler): Promise<WitnessStack>;
|
|
14
70
|
/**
|
|
15
71
|
* Performs a bitwise AND operation between `lhs` and `rhs`
|
|
16
72
|
* @param {string} lhs
|
|
@@ -62,6 +118,11 @@ export function ecdsa_secp256k1_verify(hashed_msg: Uint8Array, public_key_x_byte
|
|
|
62
118
|
*/
|
|
63
119
|
export function ecdsa_secp256r1_verify(hashed_msg: Uint8Array, public_key_x_bytes: Uint8Array, public_key_y_bytes: Uint8Array, signature: Uint8Array): boolean;
|
|
64
120
|
/**
|
|
121
|
+
* Returns the `BuildInfo` object containing information about how the installed package was built.
|
|
122
|
+
* @returns {BuildInfo} - Information on how the installed package was built.
|
|
123
|
+
*/
|
|
124
|
+
export function buildInfo(): BuildInfo;
|
|
125
|
+
/**
|
|
65
126
|
* Compresses a `WitnessMap` into the binary format outputted by Nargo.
|
|
66
127
|
*
|
|
67
128
|
* @param {WitnessMap} witness_map - A witness map.
|
|
@@ -90,93 +151,25 @@ export function compressWitnessStack(witness_stack: WitnessStack): Uint8Array;
|
|
|
90
151
|
* @returns {WitnessStack} The decompressed witness stack.
|
|
91
152
|
*/
|
|
92
153
|
export function decompressWitnessStack(compressed_witness: Uint8Array): WitnessStack;
|
|
93
|
-
/**
|
|
94
|
-
* @returns {Promise<WasmBlackBoxFunctionSolver>}
|
|
95
|
-
*/
|
|
96
|
-
export function createBlackBoxSolver(): Promise<WasmBlackBoxFunctionSolver>;
|
|
97
|
-
/**
|
|
98
|
-
* Executes an ACIR circuit to generate the solved witness from the initial witness.
|
|
99
|
-
*
|
|
100
|
-
* @param {Uint8Array} circuit - A serialized representation of an ACIR circuit
|
|
101
|
-
* @param {WitnessMap} initial_witness - The initial witness map defining all of the inputs to `circuit`..
|
|
102
|
-
* @param {ForeignCallHandler} foreign_call_handler - A callback to process any foreign calls from the circuit.
|
|
103
|
-
* @returns {WitnessMap} The solved witness calculated by executing the circuit on the provided inputs.
|
|
104
|
-
*/
|
|
105
|
-
export function executeCircuit(program: Uint8Array, initial_witness: WitnessMap, foreign_call_handler: ForeignCallHandler): Promise<WitnessMap>;
|
|
106
|
-
/**
|
|
107
|
-
* Executes an ACIR circuit to generate the solved witness from the initial witness.
|
|
108
|
-
* This method also extracts the public return values from the solved witness into its own return witness.
|
|
109
|
-
*
|
|
110
|
-
* @param {&WasmBlackBoxFunctionSolver} solver - A black box solver.
|
|
111
|
-
* @param {Uint8Array} circuit - A serialized representation of an ACIR circuit
|
|
112
|
-
* @param {WitnessMap} initial_witness - The initial witness map defining all of the inputs to `circuit`..
|
|
113
|
-
* @param {ForeignCallHandler} foreign_call_handler - A callback to process any foreign calls from the circuit.
|
|
114
|
-
* @returns {SolvedAndReturnWitness} The solved witness calculated by executing the circuit on the provided inputs, as well as the return witness indices as specified by the circuit.
|
|
115
|
-
*/
|
|
116
|
-
export function executeCircuitWithReturnWitness(solver: WasmBlackBoxFunctionSolver, program: Uint8Array, initial_witness: WitnessMap, foreign_call_handler: ForeignCallHandler): Promise<SolvedAndReturnWitness>;
|
|
117
|
-
/**
|
|
118
|
-
* Executes an ACIR circuit to generate the solved witness from the initial witness.
|
|
119
|
-
*
|
|
120
|
-
* @param {&WasmBlackBoxFunctionSolver} solver - A black box solver.
|
|
121
|
-
* @param {Uint8Array} circuit - A serialized representation of an ACIR circuit
|
|
122
|
-
* @param {WitnessMap} initial_witness - The initial witness map defining all of the inputs to `circuit`..
|
|
123
|
-
* @param {ForeignCallHandler} foreign_call_handler - A callback to process any foreign calls from the circuit.
|
|
124
|
-
* @returns {WitnessMap} The solved witness calculated by executing the circuit on the provided inputs.
|
|
125
|
-
*/
|
|
126
|
-
export function executeCircuitWithBlackBoxSolver(solver: WasmBlackBoxFunctionSolver, program: Uint8Array, initial_witness: WitnessMap, foreign_call_handler: ForeignCallHandler): Promise<WitnessMap>;
|
|
127
|
-
/**
|
|
128
|
-
*/
|
|
129
|
-
export function executeProgram(program: Uint8Array, initial_witness: WitnessMap, foreign_call_handler: ForeignCallHandler): Promise<WitnessStack>;
|
|
130
|
-
/**
|
|
131
|
-
*/
|
|
132
|
-
export function executeProgramWithBlackBoxSolver(solver: WasmBlackBoxFunctionSolver, program: Uint8Array, initial_witness: WitnessMap, foreign_call_executor: ForeignCallHandler): Promise<WitnessStack>;
|
|
133
|
-
/**
|
|
134
|
-
* Extracts a `WitnessMap` containing the witness indices corresponding to the circuit's return values.
|
|
135
|
-
*
|
|
136
|
-
* @param {Uint8Array} circuit - A serialized representation of an ACIR circuit
|
|
137
|
-
* @param {WitnessMap} witness_map - The completed witness map after executing the circuit.
|
|
138
|
-
* @returns {WitnessMap} A witness map containing the circuit's return values.
|
|
139
|
-
* @param {Uint8Array} program
|
|
140
|
-
* @param {WitnessMap} witness_map
|
|
141
|
-
* @returns {WitnessMap}
|
|
142
|
-
*/
|
|
143
|
-
export function getReturnWitness(program: Uint8Array, witness_map: WitnessMap): WitnessMap;
|
|
144
|
-
/**
|
|
145
|
-
* Extracts a `WitnessMap` containing the witness indices corresponding to the circuit's public parameters.
|
|
146
|
-
*
|
|
147
|
-
* @param {Uint8Array} circuit - A serialized representation of an ACIR circuit
|
|
148
|
-
* @param {WitnessMap} witness_map - The completed witness map after executing the circuit.
|
|
149
|
-
* @returns {WitnessMap} A witness map containing the circuit's public parameters.
|
|
150
|
-
* @param {Uint8Array} program
|
|
151
|
-
* @param {WitnessMap} solved_witness
|
|
152
|
-
* @returns {WitnessMap}
|
|
153
|
-
*/
|
|
154
|
-
export function getPublicParametersWitness(program: Uint8Array, solved_witness: WitnessMap): WitnessMap;
|
|
155
|
-
/**
|
|
156
|
-
* Extracts a `WitnessMap` containing the witness indices corresponding to the circuit's public inputs.
|
|
157
|
-
*
|
|
158
|
-
* @param {Uint8Array} circuit - A serialized representation of an ACIR circuit
|
|
159
|
-
* @param {WitnessMap} witness_map - The completed witness map after executing the circuit.
|
|
160
|
-
* @returns {WitnessMap} A witness map containing the circuit's public inputs.
|
|
161
|
-
* @param {Uint8Array} program
|
|
162
|
-
* @param {WitnessMap} solved_witness
|
|
163
|
-
* @returns {WitnessMap}
|
|
164
|
-
*/
|
|
165
|
-
export function getPublicWitness(program: Uint8Array, solved_witness: WitnessMap): WitnessMap;
|
|
166
154
|
|
|
167
|
-
|
|
168
|
-
|
|
155
|
+
export type RawAssertionPayload = {
|
|
156
|
+
selector: string;
|
|
157
|
+
data: string[];
|
|
158
|
+
};
|
|
159
|
+
export type ExecutionError = Error & {
|
|
160
|
+
callStack?: string[];
|
|
161
|
+
rawAssertionPayload?: RawAssertionPayload;
|
|
162
|
+
};
|
|
169
163
|
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
export type SolvedAndReturnWitness = {
|
|
176
|
-
solvedWitness: WitnessMap;
|
|
177
|
-
returnWitness: WitnessMap;
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
export type StackItem = {
|
|
167
|
+
index: number;
|
|
168
|
+
witness: WitnessMap;
|
|
178
169
|
}
|
|
179
170
|
|
|
171
|
+
export type WitnessStack = Array<StackItem>;
|
|
172
|
+
|
|
180
173
|
|
|
181
174
|
|
|
182
175
|
/**
|
|
@@ -207,37 +200,32 @@ export type ForeignCallHandler = (name: string, inputs: ForeignCallInput[]) => P
|
|
|
207
200
|
|
|
208
201
|
|
|
209
202
|
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
data: string[];
|
|
213
|
-
};
|
|
214
|
-
export type ExecutionError = Error & {
|
|
215
|
-
callStack?: string[];
|
|
216
|
-
rawAssertionPayload?: RawAssertionPayload;
|
|
217
|
-
};
|
|
218
|
-
|
|
219
|
-
|
|
203
|
+
// Map from witness index to hex string value of witness.
|
|
204
|
+
export type WitnessMap = Map<number, string>;
|
|
220
205
|
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
206
|
+
/**
|
|
207
|
+
* An execution result containing two witnesses.
|
|
208
|
+
* 1. The full solved witness of the execution.
|
|
209
|
+
* 2. The return witness which contains the given public return values within the full witness.
|
|
210
|
+
*/
|
|
211
|
+
export type SolvedAndReturnWitness = {
|
|
212
|
+
solvedWitness: WitnessMap;
|
|
213
|
+
returnWitness: WitnessMap;
|
|
224
214
|
}
|
|
225
215
|
|
|
226
|
-
export type WitnessStack = Array<StackItem>;
|
|
227
|
-
|
|
228
216
|
|
|
229
|
-
/**
|
|
230
|
-
*/
|
|
231
|
-
export class WasmBlackBoxFunctionSolver {
|
|
232
|
-
free(): void;
|
|
233
|
-
}
|
|
234
217
|
|
|
235
218
|
export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembly.Module;
|
|
236
219
|
|
|
237
220
|
export interface InitOutput {
|
|
238
221
|
readonly memory: WebAssembly.Memory;
|
|
239
222
|
readonly initLogLevel: (a: number, b: number, c: number) => void;
|
|
240
|
-
readonly
|
|
223
|
+
readonly getReturnWitness: (a: number, b: number, c: number, d: number) => void;
|
|
224
|
+
readonly getPublicParametersWitness: (a: number, b: number, c: number, d: number) => void;
|
|
225
|
+
readonly getPublicWitness: (a: number, b: number, c: number, d: number) => void;
|
|
226
|
+
readonly executeCircuit: (a: number, b: number, c: number, d: number) => number;
|
|
227
|
+
readonly executeCircuitWithReturnWitness: (a: number, b: number, c: number, d: number) => number;
|
|
228
|
+
readonly executeProgram: (a: number, b: number, c: number, d: number) => number;
|
|
241
229
|
readonly and: (a: number, b: number) => number;
|
|
242
230
|
readonly xor: (a: number, b: number) => number;
|
|
243
231
|
readonly sha256: (a: number, b: number, c: number) => void;
|
|
@@ -245,31 +233,20 @@ export interface InitOutput {
|
|
|
245
233
|
readonly keccak256: (a: number, b: number, c: number) => void;
|
|
246
234
|
readonly ecdsa_secp256k1_verify: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => number;
|
|
247
235
|
readonly ecdsa_secp256r1_verify: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => number;
|
|
236
|
+
readonly buildInfo: () => number;
|
|
248
237
|
readonly compressWitness: (a: number, b: number) => void;
|
|
249
238
|
readonly decompressWitness: (a: number, b: number, c: number) => void;
|
|
250
239
|
readonly compressWitnessStack: (a: number, b: number) => void;
|
|
251
240
|
readonly decompressWitnessStack: (a: number, b: number, c: number) => void;
|
|
252
|
-
readonly __wbg_wasmblackboxfunctionsolver_free: (a: number) => void;
|
|
253
|
-
readonly createBlackBoxSolver: () => number;
|
|
254
|
-
readonly executeCircuit: (a: number, b: number, c: number, d: number) => number;
|
|
255
|
-
readonly executeCircuitWithReturnWitness: (a: number, b: number, c: number, d: number, e: number) => number;
|
|
256
|
-
readonly executeCircuitWithBlackBoxSolver: (a: number, b: number, c: number, d: number, e: number) => number;
|
|
257
|
-
readonly executeProgram: (a: number, b: number, c: number, d: number) => number;
|
|
258
|
-
readonly executeProgramWithBlackBoxSolver: (a: number, b: number, c: number, d: number, e: number) => number;
|
|
259
|
-
readonly getReturnWitness: (a: number, b: number, c: number, d: number) => void;
|
|
260
|
-
readonly getPublicParametersWitness: (a: number, b: number, c: number, d: number) => void;
|
|
261
|
-
readonly getPublicWitness: (a: number, b: number, c: number, d: number) => void;
|
|
262
|
-
readonly __wbg_trap_free: (a: number) => void;
|
|
263
|
-
readonly trap___wbg_wasmer_trap: () => void;
|
|
264
241
|
readonly __wbindgen_malloc: (a: number) => number;
|
|
265
242
|
readonly __wbindgen_realloc: (a: number, b: number, c: number) => number;
|
|
266
243
|
readonly __wbindgen_export_2: WebAssembly.Table;
|
|
267
|
-
readonly
|
|
244
|
+
readonly _dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h36bac5ff3ea3c380: (a: number, b: number, c: number) => void;
|
|
268
245
|
readonly __wbindgen_add_to_stack_pointer: (a: number) => number;
|
|
269
246
|
readonly __wbindgen_free: (a: number, b: number) => void;
|
|
247
|
+
readonly wasm_bindgen__convert__closures__invoke3_mut__h629417323d5efbaa: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
270
248
|
readonly __wbindgen_exn_store: (a: number) => void;
|
|
271
|
-
readonly
|
|
272
|
-
readonly wasm_bindgen__convert__closures__invoke2_mut__h188e918906ff9a40: (a: number, b: number, c: number, d: number) => void;
|
|
249
|
+
readonly wasm_bindgen__convert__closures__invoke2_mut__h4efdd1050cfb3ea7: (a: number, b: number, c: number, d: number) => void;
|
|
273
250
|
}
|
|
274
251
|
|
|
275
252
|
export type SyncInitInput = BufferSource | WebAssembly.Module;
|