geo-polygonize 0.13.0 → 0.14.0
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/dist/geo_polygonize.wasm +0 -0
- package/dist/geo_polygonize_simd.wasm +0 -0
- package/dist/slim/cjs/index_slim.js +26 -2
- package/dist/slim/es/index_slim.js +26 -2
- package/dist/standard/cjs/index.js +15 -3
- package/dist/standard/es/index.js +15 -3
- package/dist/threads/es/index.js +13 -1
- package/package.json +1 -1
package/dist/threads/es/index.js
CHANGED
|
@@ -430,10 +430,17 @@ class WasmPolygonResult {
|
|
|
430
430
|
/**
|
|
431
431
|
* @returns {any}
|
|
432
432
|
*/
|
|
433
|
-
provenance() {
|
|
433
|
+
get provenance() {
|
|
434
434
|
const ret = wasm.wasmpolygonresult_provenance(this.__wbg_ptr);
|
|
435
435
|
return ret;
|
|
436
436
|
}
|
|
437
|
+
/**
|
|
438
|
+
* @returns {any}
|
|
439
|
+
*/
|
|
440
|
+
get diagnostics() {
|
|
441
|
+
const ret = wasm.wasmpolygonresult_diagnostics(this.__wbg_ptr);
|
|
442
|
+
return ret;
|
|
443
|
+
}
|
|
437
444
|
/**
|
|
438
445
|
* @returns {number}
|
|
439
446
|
*/
|
|
@@ -910,6 +917,11 @@ function __wbg_get_imports() {
|
|
|
910
917
|
const ret = getStringFromWasm0(arg0, arg1);
|
|
911
918
|
return ret;
|
|
912
919
|
};
|
|
920
|
+
imports.wbg.__wbindgen_cast_4625c577ab2ec9ee = function(arg0) {
|
|
921
|
+
// Cast intrinsic for `U64 -> Externref`.
|
|
922
|
+
const ret = BigInt.asUintN(64, arg0);
|
|
923
|
+
return ret;
|
|
924
|
+
};
|
|
913
925
|
imports.wbg.__wbindgen_cast_d6cd19b81560fd6e = function(arg0) {
|
|
914
926
|
// Cast intrinsic for `F64 -> Externref`.
|
|
915
927
|
const ret = arg0;
|