nucleation 0.1.81 → 0.1.82
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/nucleation-original.js +4 -4
- package/nucleation.d.ts +2 -2
- package/nucleation_bg.wasm +0 -0
- package/package.json +1 -1
package/nucleation-original.js
CHANGED
|
@@ -229,12 +229,12 @@ function getArrayJsValueFromWasm0(ptr, len) {
|
|
|
229
229
|
* @param {SchematicWrapper} schematic
|
|
230
230
|
* @returns {string}
|
|
231
231
|
*/
|
|
232
|
-
export function
|
|
232
|
+
export function debug_json_schematic(schematic) {
|
|
233
233
|
let deferred1_0;
|
|
234
234
|
let deferred1_1;
|
|
235
235
|
try {
|
|
236
236
|
_assertClass(schematic, SchematicWrapper);
|
|
237
|
-
const ret = wasm.
|
|
237
|
+
const ret = wasm.debug_json_schematic(schematic.__wbg_ptr);
|
|
238
238
|
deferred1_0 = ret[0];
|
|
239
239
|
deferred1_1 = ret[1];
|
|
240
240
|
return getStringFromWasm0(ret[0], ret[1]);
|
|
@@ -251,12 +251,12 @@ export function start() {
|
|
|
251
251
|
* @param {SchematicWrapper} schematic
|
|
252
252
|
* @returns {string}
|
|
253
253
|
*/
|
|
254
|
-
export function
|
|
254
|
+
export function debug_schematic(schematic) {
|
|
255
255
|
let deferred1_0;
|
|
256
256
|
let deferred1_1;
|
|
257
257
|
try {
|
|
258
258
|
_assertClass(schematic, SchematicWrapper);
|
|
259
|
-
const ret = wasm.
|
|
259
|
+
const ret = wasm.debug_schematic(schematic.__wbg_ptr);
|
|
260
260
|
deferred1_0 = ret[0];
|
|
261
261
|
deferred1_1 = ret[1];
|
|
262
262
|
return getStringFromWasm0(ret[0], ret[1]);
|
package/nucleation.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
|
-
export function debug_schematic(schematic: SchematicWrapper): string;
|
|
4
|
-
export function start(): void;
|
|
5
3
|
export function debug_json_schematic(schematic: SchematicWrapper): string;
|
|
4
|
+
export function start(): void;
|
|
5
|
+
export function debug_schematic(schematic: SchematicWrapper): string;
|
|
6
6
|
export class BlockPosition {
|
|
7
7
|
free(): void;
|
|
8
8
|
[Symbol.dispose](): void;
|
package/nucleation_bg.wasm
CHANGED
|
Binary file
|