@bitwarden/sdk-internal 0.2.0-main.500 → 0.2.0-main.502
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/VERSION +1 -1
- package/bitwarden_wasm_internal.d.ts +394 -395
- package/bitwarden_wasm_internal_bg.js +64 -64
- package/bitwarden_wasm_internal_bg.wasm +0 -0
- package/bitwarden_wasm_internal_bg.wasm.d.ts +4 -4
- package/bitwarden_wasm_internal_bg.wasm.js +1 -1
- package/node/bitwarden_wasm_internal.d.ts +394 -395
- package/node/bitwarden_wasm_internal.js +68 -68
- package/node/bitwarden_wasm_internal_bg.wasm +0 -0
- package/node/bitwarden_wasm_internal_bg.wasm.d.ts +8 -8
- package/package.json +1 -1
|
@@ -408,9 +408,9 @@ exports.isRotateCryptographyStateError = function(error) {
|
|
|
408
408
|
* @param {any} error
|
|
409
409
|
* @returns {boolean}
|
|
410
410
|
*/
|
|
411
|
-
exports.
|
|
411
|
+
exports.isEnrollAdminPasswordResetError = function(error) {
|
|
412
412
|
try {
|
|
413
|
-
const ret = wasm.
|
|
413
|
+
const ret = wasm.isEnrollAdminPasswordResetError(addBorrowedObject(error));
|
|
414
414
|
return ret !== 0;
|
|
415
415
|
} finally {
|
|
416
416
|
heap[stack_pointer++] = undefined;
|
|
@@ -421,9 +421,9 @@ exports.isCryptoClientError = function(error) {
|
|
|
421
421
|
* @param {any} error
|
|
422
422
|
* @returns {boolean}
|
|
423
423
|
*/
|
|
424
|
-
exports.
|
|
424
|
+
exports.isCryptoClientError = function(error) {
|
|
425
425
|
try {
|
|
426
|
-
const ret = wasm.
|
|
426
|
+
const ret = wasm.isCryptoClientError(addBorrowedObject(error));
|
|
427
427
|
return ret !== 0;
|
|
428
428
|
} finally {
|
|
429
429
|
heap[stack_pointer++] = undefined;
|
|
@@ -434,9 +434,9 @@ exports.isMakeKeysError = function(error) {
|
|
|
434
434
|
* @param {any} error
|
|
435
435
|
* @returns {boolean}
|
|
436
436
|
*/
|
|
437
|
-
exports.
|
|
437
|
+
exports.isMakeKeysError = function(error) {
|
|
438
438
|
try {
|
|
439
|
-
const ret = wasm.
|
|
439
|
+
const ret = wasm.isMakeKeysError(addBorrowedObject(error));
|
|
440
440
|
return ret !== 0;
|
|
441
441
|
} finally {
|
|
442
442
|
heap[stack_pointer++] = undefined;
|
|
@@ -447,9 +447,9 @@ exports.isDeriveKeyConnectorError = function(error) {
|
|
|
447
447
|
* @param {any} error
|
|
448
448
|
* @returns {boolean}
|
|
449
449
|
*/
|
|
450
|
-
exports.
|
|
450
|
+
exports.isDeriveKeyConnectorError = function(error) {
|
|
451
451
|
try {
|
|
452
|
-
const ret = wasm.
|
|
452
|
+
const ret = wasm.isDeriveKeyConnectorError(addBorrowedObject(error));
|
|
453
453
|
return ret !== 0;
|
|
454
454
|
} finally {
|
|
455
455
|
heap[stack_pointer++] = undefined;
|
|
@@ -759,9 +759,9 @@ exports.isTotpError = function(error) {
|
|
|
759
759
|
* @param {any} error
|
|
760
760
|
* @returns {boolean}
|
|
761
761
|
*/
|
|
762
|
-
exports.
|
|
762
|
+
exports.isDecryptError = function(error) {
|
|
763
763
|
try {
|
|
764
|
-
const ret = wasm.
|
|
764
|
+
const ret = wasm.isDecryptError(addBorrowedObject(error));
|
|
765
765
|
return ret !== 0;
|
|
766
766
|
} finally {
|
|
767
767
|
heap[stack_pointer++] = undefined;
|
|
@@ -772,9 +772,9 @@ exports.isEncryptError = function(error) {
|
|
|
772
772
|
* @param {any} error
|
|
773
773
|
* @returns {boolean}
|
|
774
774
|
*/
|
|
775
|
-
exports.
|
|
775
|
+
exports.isEncryptError = function(error) {
|
|
776
776
|
try {
|
|
777
|
-
const ret = wasm.
|
|
777
|
+
const ret = wasm.isEncryptError(addBorrowedObject(error));
|
|
778
778
|
return ret !== 0;
|
|
779
779
|
} finally {
|
|
780
780
|
heap[stack_pointer++] = undefined;
|
|
@@ -915,9 +915,9 @@ exports.isRestoreCipherError = function(error) {
|
|
|
915
915
|
* @param {any} error
|
|
916
916
|
* @returns {boolean}
|
|
917
917
|
*/
|
|
918
|
-
exports.
|
|
918
|
+
exports.isEncryptFileError = function(error) {
|
|
919
919
|
try {
|
|
920
|
-
const ret = wasm.
|
|
920
|
+
const ret = wasm.isEncryptFileError(addBorrowedObject(error));
|
|
921
921
|
return ret !== 0;
|
|
922
922
|
} finally {
|
|
923
923
|
heap[stack_pointer++] = undefined;
|
|
@@ -928,9 +928,9 @@ exports.isDecryptFileError = function(error) {
|
|
|
928
928
|
* @param {any} error
|
|
929
929
|
* @returns {boolean}
|
|
930
930
|
*/
|
|
931
|
-
exports.
|
|
931
|
+
exports.isDecryptFileError = function(error) {
|
|
932
932
|
try {
|
|
933
|
-
const ret = wasm.
|
|
933
|
+
const ret = wasm.isDecryptFileError(addBorrowedObject(error));
|
|
934
934
|
return ret !== 0;
|
|
935
935
|
} finally {
|
|
936
936
|
heap[stack_pointer++] = undefined;
|
|
@@ -989,10 +989,14 @@ exports.isGetFolderError = function(error) {
|
|
|
989
989
|
}
|
|
990
990
|
};
|
|
991
991
|
|
|
992
|
-
function
|
|
992
|
+
function wasm_bindgen__convert__closures_____invoke__h7e690d71e18a977f(arg0, arg1, arg2) {
|
|
993
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h7e690d71e18a977f(arg0, arg1, addHeapObject(arg2));
|
|
994
|
+
}
|
|
995
|
+
|
|
996
|
+
function wasm_bindgen__convert__closures_____invoke__h4af377e64bbfb918(arg0, arg1, arg2) {
|
|
993
997
|
try {
|
|
994
998
|
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
|
|
995
|
-
wasm.
|
|
999
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h4af377e64bbfb918(retptr, arg0, arg1, addHeapObject(arg2));
|
|
996
1000
|
var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
|
|
997
1001
|
var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
|
|
998
1002
|
if (r1) {
|
|
@@ -1007,10 +1011,6 @@ function wasm_bindgen__convert__closures_____invoke__ha638740cca0ef77d(arg0, arg
|
|
|
1007
1011
|
wasm.wasm_bindgen__convert__closures_____invoke__ha638740cca0ef77d(arg0, arg1);
|
|
1008
1012
|
}
|
|
1009
1013
|
|
|
1010
|
-
function wasm_bindgen__convert__closures_____invoke__h7e690d71e18a977f(arg0, arg1, arg2) {
|
|
1011
|
-
wasm.wasm_bindgen__convert__closures_____invoke__h7e690d71e18a977f(arg0, arg1, addHeapObject(arg2));
|
|
1012
|
-
}
|
|
1013
|
-
|
|
1014
1014
|
function wasm_bindgen__convert__closures_____invoke__h0c62e4f019080f6a(arg0, arg1, arg2, arg3) {
|
|
1015
1015
|
wasm.wasm_bindgen__convert__closures_____invoke__h0c62e4f019080f6a(arg0, arg1, addHeapObject(arg2), addHeapObject(arg3));
|
|
1016
1016
|
}
|
|
@@ -4765,7 +4765,7 @@ exports.__wbg_call_e762c39fa8ea36bf = function() { return handleError(function (
|
|
|
4765
4765
|
return addHeapObject(ret);
|
|
4766
4766
|
}, arguments) };
|
|
4767
4767
|
|
|
4768
|
-
exports.
|
|
4768
|
+
exports.__wbg_cipher_25e21f64a5b36729 = function(arg0) {
|
|
4769
4769
|
const ret = getObject(arg0).cipher;
|
|
4770
4770
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
4771
4771
|
};
|
|
@@ -4857,7 +4857,7 @@ exports.__wbg_fetch_f8ba0e29a9d6de0d = function(arg0, arg1) {
|
|
|
4857
4857
|
return addHeapObject(ret);
|
|
4858
4858
|
};
|
|
4859
4859
|
|
|
4860
|
-
exports.
|
|
4860
|
+
exports.__wbg_folder_dffa8d63ce80732c = function(arg0) {
|
|
4861
4861
|
const ret = getObject(arg0).folder;
|
|
4862
4862
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
4863
4863
|
};
|
|
@@ -4889,12 +4889,7 @@ exports.__wbg_getTime_14776bfb48a1bff9 = function(arg0) {
|
|
|
4889
4889
|
return ret;
|
|
4890
4890
|
};
|
|
4891
4891
|
|
|
4892
|
-
exports.
|
|
4893
|
-
const ret = getObject(arg0)[arg1 >>> 0];
|
|
4894
|
-
return addHeapObject(ret);
|
|
4895
|
-
};
|
|
4896
|
-
|
|
4897
|
-
exports.__wbg_get_95bb06f440819e46 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
4892
|
+
exports.__wbg_get_21245f1834b60ecd = function() { return handleError(function (arg0, arg1, arg2) {
|
|
4898
4893
|
let deferred0_0;
|
|
4899
4894
|
let deferred0_1;
|
|
4900
4895
|
try {
|
|
@@ -4907,12 +4902,17 @@ exports.__wbg_get_95bb06f440819e46 = function() { return handleError(function (a
|
|
|
4907
4902
|
}
|
|
4908
4903
|
}, arguments) };
|
|
4909
4904
|
|
|
4910
|
-
exports.
|
|
4905
|
+
exports.__wbg_get_7bed016f185add81 = function(arg0, arg1) {
|
|
4906
|
+
const ret = getObject(arg0)[arg1 >>> 0];
|
|
4907
|
+
return addHeapObject(ret);
|
|
4908
|
+
};
|
|
4909
|
+
|
|
4910
|
+
exports.__wbg_get_access_token_d759cc6f6e3c9186 = function(arg0) {
|
|
4911
4911
|
const ret = getObject(arg0).get_access_token();
|
|
4912
4912
|
return addHeapObject(ret);
|
|
4913
4913
|
};
|
|
4914
4914
|
|
|
4915
|
-
exports.
|
|
4915
|
+
exports.__wbg_get_dc1fe8a0ad1b079d = function() { return handleError(function (arg0, arg1, arg2) {
|
|
4916
4916
|
let deferred0_0;
|
|
4917
4917
|
let deferred0_1;
|
|
4918
4918
|
try {
|
|
@@ -5113,12 +5113,12 @@ exports.__wbg_length_cdd215e10d9dd507 = function(arg0) {
|
|
|
5113
5113
|
return ret;
|
|
5114
5114
|
};
|
|
5115
5115
|
|
|
5116
|
-
exports.
|
|
5116
|
+
exports.__wbg_list_0ba4e8f1a5b8668c = function() { return handleError(function (arg0) {
|
|
5117
5117
|
const ret = getObject(arg0).list();
|
|
5118
5118
|
return addHeapObject(ret);
|
|
5119
5119
|
}, arguments) };
|
|
5120
5120
|
|
|
5121
|
-
exports.
|
|
5121
|
+
exports.__wbg_list_7fea1e83732ecfa9 = function() { return handleError(function (arg0) {
|
|
5122
5122
|
const ret = getObject(arg0).list();
|
|
5123
5123
|
return addHeapObject(ret);
|
|
5124
5124
|
}, arguments) };
|
|
@@ -5340,7 +5340,7 @@ exports.__wbg_randomFillSync_ac0988aba3254290 = function() { return handleError(
|
|
|
5340
5340
|
getObject(arg0).randomFillSync(takeObject(arg1));
|
|
5341
5341
|
}, arguments) };
|
|
5342
5342
|
|
|
5343
|
-
exports.
|
|
5343
|
+
exports.__wbg_remove_006f4adc3520c64e = function() { return handleError(function (arg0, arg1, arg2) {
|
|
5344
5344
|
let deferred0_0;
|
|
5345
5345
|
let deferred0_1;
|
|
5346
5346
|
try {
|
|
@@ -5353,7 +5353,7 @@ exports.__wbg_remove_17290c56cef3c359 = function() { return handleError(function
|
|
|
5353
5353
|
}
|
|
5354
5354
|
}, arguments) };
|
|
5355
5355
|
|
|
5356
|
-
exports.
|
|
5356
|
+
exports.__wbg_remove_8b96f102e76672ad = function() { return handleError(function (arg0, arg1, arg2) {
|
|
5357
5357
|
let deferred0_0;
|
|
5358
5358
|
let deferred0_1;
|
|
5359
5359
|
try {
|
|
@@ -5391,11 +5391,7 @@ exports.__wbg_setTimeout_ca12ead8b48245e2 = function(arg0, arg1) {
|
|
|
5391
5391
|
return addHeapObject(ret);
|
|
5392
5392
|
};
|
|
5393
5393
|
|
|
5394
|
-
exports.
|
|
5395
|
-
getObject(arg0)[takeObject(arg1)] = takeObject(arg2);
|
|
5396
|
-
};
|
|
5397
|
-
|
|
5398
|
-
exports.__wbg_set_51f8a30bfdc60212 = function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
5394
|
+
exports.__wbg_set_16b2a9c31405c457 = function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
5399
5395
|
let deferred0_0;
|
|
5400
5396
|
let deferred0_1;
|
|
5401
5397
|
try {
|
|
@@ -5408,12 +5404,7 @@ exports.__wbg_set_51f8a30bfdc60212 = function() { return handleError(function (a
|
|
|
5408
5404
|
}
|
|
5409
5405
|
}, arguments) };
|
|
5410
5406
|
|
|
5411
|
-
exports.
|
|
5412
|
-
const ret = getObject(arg0).set(getObject(arg1), getObject(arg2));
|
|
5413
|
-
return addHeapObject(ret);
|
|
5414
|
-
};
|
|
5415
|
-
|
|
5416
|
-
exports.__wbg_set_b9166c4267487258 = function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
5407
|
+
exports.__wbg_set_1c3d5ce246338885 = function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
5417
5408
|
let deferred0_0;
|
|
5418
5409
|
let deferred0_1;
|
|
5419
5410
|
try {
|
|
@@ -5426,6 +5417,15 @@ exports.__wbg_set_b9166c4267487258 = function() { return handleError(function (a
|
|
|
5426
5417
|
}
|
|
5427
5418
|
}, arguments) };
|
|
5428
5419
|
|
|
5420
|
+
exports.__wbg_set_3f1d0b984ed272ed = function(arg0, arg1, arg2) {
|
|
5421
|
+
getObject(arg0)[takeObject(arg1)] = takeObject(arg2);
|
|
5422
|
+
};
|
|
5423
|
+
|
|
5424
|
+
exports.__wbg_set_907fb406c34a251d = function(arg0, arg1, arg2) {
|
|
5425
|
+
const ret = getObject(arg0).set(getObject(arg1), getObject(arg2));
|
|
5426
|
+
return addHeapObject(ret);
|
|
5427
|
+
};
|
|
5428
|
+
|
|
5429
5429
|
exports.__wbg_set_body_3c365989753d61f4 = function(arg0, arg1) {
|
|
5430
5430
|
getObject(arg0).body = getObject(arg1);
|
|
5431
5431
|
};
|
|
@@ -5608,21 +5608,21 @@ exports.__wbg_warn_8f5b5437666d0885 = function(arg0, arg1, arg2, arg3) {
|
|
|
5608
5608
|
console.warn(getObject(arg0), getObject(arg1), getObject(arg2), getObject(arg3));
|
|
5609
5609
|
};
|
|
5610
5610
|
|
|
5611
|
-
exports.
|
|
5612
|
-
// Cast intrinsic for `
|
|
5613
|
-
const ret =
|
|
5611
|
+
exports.__wbindgen_cast_040237b82ce31ec9 = function(arg0, arg1) {
|
|
5612
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 333, function: Function { arguments: [Externref], shim_idx: 42, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
5613
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__hc71695a401114797, wasm_bindgen__convert__closures_____invoke__h7e690d71e18a977f);
|
|
5614
5614
|
return addHeapObject(ret);
|
|
5615
5615
|
};
|
|
5616
5616
|
|
|
5617
|
-
exports.
|
|
5618
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
5619
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
5617
|
+
exports.__wbindgen_cast_1e9dc1058b799ead = function(arg0, arg1) {
|
|
5618
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 41, function: Function { arguments: [NamedExternref("IDBVersionChangeEvent")], shim_idx: 42, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
5619
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h68ac44da0078a006, wasm_bindgen__convert__closures_____invoke__h7e690d71e18a977f);
|
|
5620
5620
|
return addHeapObject(ret);
|
|
5621
5621
|
};
|
|
5622
5622
|
|
|
5623
|
-
exports.
|
|
5624
|
-
// Cast intrinsic for `
|
|
5625
|
-
const ret =
|
|
5623
|
+
exports.__wbindgen_cast_2241b6af4c4b2941 = function(arg0, arg1) {
|
|
5624
|
+
// Cast intrinsic for `Ref(String) -> Externref`.
|
|
5625
|
+
const ret = getStringFromWasm0(arg0, arg1);
|
|
5626
5626
|
return addHeapObject(ret);
|
|
5627
5627
|
};
|
|
5628
5628
|
|
|
@@ -5646,12 +5646,6 @@ exports.__wbindgen_cast_73a0930a4562bf7d = function(arg0, arg1) {
|
|
|
5646
5646
|
return addHeapObject(ret);
|
|
5647
5647
|
};
|
|
5648
5648
|
|
|
5649
|
-
exports.__wbindgen_cast_74e55181dcd20690 = function(arg0, arg1) {
|
|
5650
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx: 339, function: Function { arguments: [NamedExternref("Event")], shim_idx: 44, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
5651
|
-
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__hd9661b26d463effa, wasm_bindgen__convert__closures_____invoke__h7e690d71e18a977f);
|
|
5652
|
-
return addHeapObject(ret);
|
|
5653
|
-
};
|
|
5654
|
-
|
|
5655
5649
|
exports.__wbindgen_cast_7a6d185652cd8149 = function(arg0, arg1) {
|
|
5656
5650
|
var v0 = getArrayJsValueFromWasm0(arg0, arg1).slice();
|
|
5657
5651
|
wasm.__wbindgen_free(arg0, arg1 * 4, 4);
|
|
@@ -5678,18 +5672,18 @@ exports.__wbindgen_cast_cb9088102bce6b30 = function(arg0, arg1) {
|
|
|
5678
5672
|
return addHeapObject(ret);
|
|
5679
5673
|
};
|
|
5680
5674
|
|
|
5681
|
-
exports.__wbindgen_cast_d49c305f67640cb1 = function(arg0, arg1) {
|
|
5682
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx: 41, function: Function { arguments: [NamedExternref("Event")], shim_idx: 42, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
|
|
5683
|
-
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h582e24ac35be59c7, wasm_bindgen__convert__closures_____invoke__hc40f00976e9368ab);
|
|
5684
|
-
return addHeapObject(ret);
|
|
5685
|
-
};
|
|
5686
|
-
|
|
5687
5675
|
exports.__wbindgen_cast_d6cd19b81560fd6e = function(arg0) {
|
|
5688
5676
|
// Cast intrinsic for `F64 -> Externref`.
|
|
5689
5677
|
const ret = arg0;
|
|
5690
5678
|
return addHeapObject(ret);
|
|
5691
5679
|
};
|
|
5692
5680
|
|
|
5681
|
+
exports.__wbindgen_cast_daac1d8e48fc3ba0 = function(arg0, arg1) {
|
|
5682
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 41, function: Function { arguments: [NamedExternref("Event")], shim_idx: 44, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
|
|
5683
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h68ac44da0078a006, wasm_bindgen__convert__closures_____invoke__h4af377e64bbfb918);
|
|
5684
|
+
return addHeapObject(ret);
|
|
5685
|
+
};
|
|
5686
|
+
|
|
5693
5687
|
exports.__wbindgen_cast_ef90a087adb7475d = function(arg0, arg1) {
|
|
5694
5688
|
var v0 = getArrayJsValueFromWasm0(arg0, arg1).slice();
|
|
5695
5689
|
wasm.__wbindgen_free(arg0, arg1 * 4, 4);
|
|
@@ -5698,6 +5692,12 @@ exports.__wbindgen_cast_ef90a087adb7475d = function(arg0, arg1) {
|
|
|
5698
5692
|
return addHeapObject(ret);
|
|
5699
5693
|
};
|
|
5700
5694
|
|
|
5695
|
+
exports.__wbindgen_cast_faabdb593332903b = function(arg0, arg1) {
|
|
5696
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 339, function: Function { arguments: [NamedExternref("Event")], shim_idx: 42, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
5697
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__hd9661b26d463effa, wasm_bindgen__convert__closures_____invoke__h7e690d71e18a977f);
|
|
5698
|
+
return addHeapObject(ret);
|
|
5699
|
+
};
|
|
5700
|
+
|
|
5701
5701
|
exports.__wbindgen_object_clone_ref = function(arg0) {
|
|
5702
5702
|
const ret = getObject(arg0);
|
|
5703
5703
|
return addHeapObject(ret);
|
|
Binary file
|
|
@@ -510,25 +510,25 @@ export const __wbg_get_outgoingmessage_destination: (a: number) => number;
|
|
|
510
510
|
export const vaultclient_attachments: (a: number) => number;
|
|
511
511
|
export const __wbg_set_outgoingmessage_destination: (a: number, b: number) => void;
|
|
512
512
|
export const __wbg_cryptoclient_free: (a: number, b: number) => void;
|
|
513
|
-
export const
|
|
513
|
+
export const wasm_bindgen__convert__closures_____invoke__h7e690d71e18a977f: (
|
|
514
514
|
a: number,
|
|
515
515
|
b: number,
|
|
516
516
|
c: number,
|
|
517
|
-
d: number,
|
|
518
517
|
) => void;
|
|
519
|
-
export const
|
|
520
|
-
export const
|
|
518
|
+
export const wasm_bindgen__closure__destroy__h68ac44da0078a006: (a: number, b: number) => void;
|
|
519
|
+
export const wasm_bindgen__convert__closures_____invoke__h4af377e64bbfb918: (
|
|
521
520
|
a: number,
|
|
522
521
|
b: number,
|
|
522
|
+
c: number,
|
|
523
|
+
d: number,
|
|
523
524
|
) => void;
|
|
524
|
-
export const
|
|
525
|
-
export const
|
|
525
|
+
export const wasm_bindgen__closure__destroy__hd9661b26d463effa: (a: number, b: number) => void;
|
|
526
|
+
export const wasm_bindgen__convert__closures_____invoke__ha638740cca0ef77d: (
|
|
526
527
|
a: number,
|
|
527
528
|
b: number,
|
|
528
|
-
c: number,
|
|
529
529
|
) => void;
|
|
530
|
-
export const wasm_bindgen__closure__destroy__hd9661b26d463effa: (a: number, b: number) => void;
|
|
531
530
|
export const wasm_bindgen__closure__destroy__h666c8569a46b7e11: (a: number, b: number) => void;
|
|
531
|
+
export const wasm_bindgen__closure__destroy__hc71695a401114797: (a: number, b: number) => void;
|
|
532
532
|
export const wasm_bindgen__convert__closures_____invoke__h0c62e4f019080f6a: (
|
|
533
533
|
a: number,
|
|
534
534
|
b: number,
|