@bitwarden/sdk-internal 0.2.0-main.403 → 0.2.0-main.405
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 +4 -0
- package/bitwarden_wasm_internal_bg.js +73 -63
- package/bitwarden_wasm_internal_bg.wasm +0 -0
- package/bitwarden_wasm_internal_bg.wasm.d.ts +8 -8
- package/bitwarden_wasm_internal_bg.wasm.js +1 -1
- package/node/bitwarden_wasm_internal.d.ts +4 -0
- package/node/bitwarden_wasm_internal.js +77 -67
- package/node/bitwarden_wasm_internal_bg.wasm +0 -0
- package/node/bitwarden_wasm_internal_bg.wasm.d.ts +7 -7
- package/package.json +1 -1
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
7f09fd2f4c29f4627263bcb2dacb9a3ea6599687
|
|
@@ -2432,18 +2432,22 @@ export class PureCrypto {
|
|
|
2432
2432
|
/**
|
|
2433
2433
|
* Given a decrypted private RSA key PKCS8 DER this
|
|
2434
2434
|
* returns the corresponding public RSA key in DER format.
|
|
2435
|
+
* HAZMAT WARNING: Do not use outside of implementing cryptofunctionservice
|
|
2435
2436
|
*/
|
|
2436
2437
|
static rsa_extract_public_key(private_key: Uint8Array): Uint8Array;
|
|
2437
2438
|
/**
|
|
2438
2439
|
* Generates a new RSA key pair and returns the private key
|
|
2440
|
+
* HAZMAT WARNING: Do not use outside of implementing cryptofunctionservice
|
|
2439
2441
|
*/
|
|
2440
2442
|
static rsa_generate_keypair(): Uint8Array;
|
|
2441
2443
|
/**
|
|
2442
2444
|
* Decrypts data using RSAES-OAEP with SHA-1
|
|
2445
|
+
* HAZMAT WARNING: Do not use outside of implementing cryptofunctionservice
|
|
2443
2446
|
*/
|
|
2444
2447
|
static rsa_decrypt_data(encrypted_data: Uint8Array, private_key: Uint8Array): Uint8Array;
|
|
2445
2448
|
/**
|
|
2446
2449
|
* Encrypts data using RSAES-OAEP with SHA-1
|
|
2450
|
+
* HAZMAT WARNING: Do not use outside of implementing cryptofunctionservice
|
|
2447
2451
|
*/
|
|
2448
2452
|
static rsa_encrypt_data(plain_data: Uint8Array, public_key: Uint8Array): Uint8Array;
|
|
2449
2453
|
}
|
|
@@ -868,14 +868,22 @@ export function isEncryptFileError(error) {
|
|
|
868
868
|
}
|
|
869
869
|
}
|
|
870
870
|
|
|
871
|
+
function wasm_bindgen__convert__closures_____invoke__h5c75b123e343f7aa(arg0, arg1, arg2) {
|
|
872
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h5c75b123e343f7aa(
|
|
873
|
+
arg0,
|
|
874
|
+
arg1,
|
|
875
|
+
addHeapObject(arg2),
|
|
876
|
+
);
|
|
877
|
+
}
|
|
878
|
+
|
|
871
879
|
function wasm_bindgen__convert__closures_____invoke__h092300064b8afb1e(arg0, arg1) {
|
|
872
880
|
wasm.wasm_bindgen__convert__closures_____invoke__h092300064b8afb1e(arg0, arg1);
|
|
873
881
|
}
|
|
874
882
|
|
|
875
|
-
function
|
|
883
|
+
function wasm_bindgen__convert__closures_____invoke__hb20fdca52a2a2cdf(arg0, arg1, arg2) {
|
|
876
884
|
try {
|
|
877
885
|
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
|
|
878
|
-
wasm.
|
|
886
|
+
wasm.wasm_bindgen__convert__closures_____invoke__hb20fdca52a2a2cdf(
|
|
879
887
|
retptr,
|
|
880
888
|
arg0,
|
|
881
889
|
arg1,
|
|
@@ -891,14 +899,6 @@ function wasm_bindgen__convert__closures_____invoke__hf2aaabd14a684be1(arg0, arg
|
|
|
891
899
|
}
|
|
892
900
|
}
|
|
893
901
|
|
|
894
|
-
function wasm_bindgen__convert__closures_____invoke__h3bed1aa0e3f56559(arg0, arg1, arg2) {
|
|
895
|
-
wasm.wasm_bindgen__convert__closures_____invoke__h3bed1aa0e3f56559(
|
|
896
|
-
arg0,
|
|
897
|
-
arg1,
|
|
898
|
-
addHeapObject(arg2),
|
|
899
|
-
);
|
|
900
|
-
}
|
|
901
|
-
|
|
902
902
|
function wasm_bindgen__convert__closures_____invoke__h43dfd80678632d6f(arg0, arg1, arg2, arg3) {
|
|
903
903
|
wasm.wasm_bindgen__convert__closures_____invoke__h43dfd80678632d6f(
|
|
904
904
|
arg0,
|
|
@@ -4027,6 +4027,7 @@ export class PureCrypto {
|
|
|
4027
4027
|
/**
|
|
4028
4028
|
* Given a decrypted private RSA key PKCS8 DER this
|
|
4029
4029
|
* returns the corresponding public RSA key in DER format.
|
|
4030
|
+
* HAZMAT WARNING: Do not use outside of implementing cryptofunctionservice
|
|
4030
4031
|
* @param {Uint8Array} private_key
|
|
4031
4032
|
* @returns {Uint8Array}
|
|
4032
4033
|
*/
|
|
@@ -4052,6 +4053,7 @@ export class PureCrypto {
|
|
|
4052
4053
|
}
|
|
4053
4054
|
/**
|
|
4054
4055
|
* Generates a new RSA key pair and returns the private key
|
|
4056
|
+
* HAZMAT WARNING: Do not use outside of implementing cryptofunctionservice
|
|
4055
4057
|
* @returns {Uint8Array}
|
|
4056
4058
|
*/
|
|
4057
4059
|
static rsa_generate_keypair() {
|
|
@@ -4074,6 +4076,7 @@ export class PureCrypto {
|
|
|
4074
4076
|
}
|
|
4075
4077
|
/**
|
|
4076
4078
|
* Decrypts data using RSAES-OAEP with SHA-1
|
|
4079
|
+
* HAZMAT WARNING: Do not use outside of implementing cryptofunctionservice
|
|
4077
4080
|
* @param {Uint8Array} encrypted_data
|
|
4078
4081
|
* @param {Uint8Array} private_key
|
|
4079
4082
|
* @returns {Uint8Array}
|
|
@@ -4102,6 +4105,7 @@ export class PureCrypto {
|
|
|
4102
4105
|
}
|
|
4103
4106
|
/**
|
|
4104
4107
|
* Encrypts data using RSAES-OAEP with SHA-1
|
|
4108
|
+
* HAZMAT WARNING: Do not use outside of implementing cryptofunctionservice
|
|
4105
4109
|
* @param {Uint8Array} plain_data
|
|
4106
4110
|
* @param {Uint8Array} public_key
|
|
4107
4111
|
* @returns {Uint8Array}
|
|
@@ -4545,7 +4549,7 @@ export function __wbg_call_e762c39fa8ea36bf() {
|
|
|
4545
4549
|
}, arguments);
|
|
4546
4550
|
}
|
|
4547
4551
|
|
|
4548
|
-
export function
|
|
4552
|
+
export function __wbg_cipher_54d9031d60850622(arg0) {
|
|
4549
4553
|
const ret = getObject(arg0).cipher;
|
|
4550
4554
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
4551
4555
|
}
|
|
@@ -4638,7 +4642,7 @@ export function __wbg_fetch_f8ba0e29a9d6de0d(arg0, arg1) {
|
|
|
4638
4642
|
return addHeapObject(ret);
|
|
4639
4643
|
}
|
|
4640
4644
|
|
|
4641
|
-
export function
|
|
4645
|
+
export function __wbg_folder_2d6703d18bcf6b5f(arg0) {
|
|
4642
4646
|
const ret = getObject(arg0).folder;
|
|
4643
4647
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
4644
4648
|
}
|
|
@@ -4654,6 +4658,12 @@ export function __wbg_getRandomValues_38097e921c2494c3() {
|
|
|
4654
4658
|
}, arguments);
|
|
4655
4659
|
}
|
|
4656
4660
|
|
|
4661
|
+
export function __wbg_getRandomValues_3c9c0d586e575a16() {
|
|
4662
|
+
return handleError(function (arg0, arg1) {
|
|
4663
|
+
globalThis.crypto.getRandomValues(getArrayU8FromWasm0(arg0, arg1));
|
|
4664
|
+
}, arguments);
|
|
4665
|
+
}
|
|
4666
|
+
|
|
4657
4667
|
export function __wbg_getRandomValues_b8f5dbd5f3995a9e() {
|
|
4658
4668
|
return handleError(function (arg0, arg1) {
|
|
4659
4669
|
getObject(arg0).getRandomValues(getObject(arg1));
|
|
@@ -4665,7 +4675,7 @@ export function __wbg_getTime_14776bfb48a1bff9(arg0) {
|
|
|
4665
4675
|
return ret;
|
|
4666
4676
|
}
|
|
4667
4677
|
|
|
4668
|
-
export function
|
|
4678
|
+
export function __wbg_get_7a7b765d166b78eb() {
|
|
4669
4679
|
return handleError(function (arg0, arg1, arg2) {
|
|
4670
4680
|
let deferred0_0;
|
|
4671
4681
|
let deferred0_1;
|
|
@@ -4685,7 +4695,12 @@ export function __wbg_get_7bed016f185add81(arg0, arg1) {
|
|
|
4685
4695
|
return addHeapObject(ret);
|
|
4686
4696
|
}
|
|
4687
4697
|
|
|
4688
|
-
export function
|
|
4698
|
+
export function __wbg_get_access_token_16ca6a078a16a9e6(arg0) {
|
|
4699
|
+
const ret = getObject(arg0).get_access_token();
|
|
4700
|
+
return addHeapObject(ret);
|
|
4701
|
+
}
|
|
4702
|
+
|
|
4703
|
+
export function __wbg_get_d7c03a2a1838f895() {
|
|
4689
4704
|
return handleError(function (arg0, arg1, arg2) {
|
|
4690
4705
|
let deferred0_0;
|
|
4691
4706
|
let deferred0_1;
|
|
@@ -4700,11 +4715,6 @@ export function __wbg_get_ab3c82eecdf4bc91() {
|
|
|
4700
4715
|
}, arguments);
|
|
4701
4716
|
}
|
|
4702
4717
|
|
|
4703
|
-
export function __wbg_get_access_token_418fcb38cdc8413d(arg0) {
|
|
4704
|
-
const ret = getObject(arg0).get_access_token();
|
|
4705
|
-
return addHeapObject(ret);
|
|
4706
|
-
}
|
|
4707
|
-
|
|
4708
4718
|
export function __wbg_get_efcb449f58ec27c2() {
|
|
4709
4719
|
return handleError(function (arg0, arg1) {
|
|
4710
4720
|
const ret = Reflect.get(getObject(arg0), getObject(arg1));
|
|
@@ -4896,14 +4906,14 @@ export function __wbg_length_cdd215e10d9dd507(arg0) {
|
|
|
4896
4906
|
return ret;
|
|
4897
4907
|
}
|
|
4898
4908
|
|
|
4899
|
-
export function
|
|
4909
|
+
export function __wbg_list_29517841961e05e3() {
|
|
4900
4910
|
return handleError(function (arg0) {
|
|
4901
4911
|
const ret = getObject(arg0).list();
|
|
4902
4912
|
return addHeapObject(ret);
|
|
4903
4913
|
}, arguments);
|
|
4904
4914
|
}
|
|
4905
4915
|
|
|
4906
|
-
export function
|
|
4916
|
+
export function __wbg_list_935b546af2d9b6de() {
|
|
4907
4917
|
return handleError(function (arg0) {
|
|
4908
4918
|
const ret = getObject(arg0).list();
|
|
4909
4919
|
return addHeapObject(ret);
|
|
@@ -5147,7 +5157,7 @@ export function __wbg_randomFillSync_ac0988aba3254290() {
|
|
|
5147
5157
|
}, arguments);
|
|
5148
5158
|
}
|
|
5149
5159
|
|
|
5150
|
-
export function
|
|
5160
|
+
export function __wbg_remove_610f7f30b398d771() {
|
|
5151
5161
|
return handleError(function (arg0, arg1, arg2) {
|
|
5152
5162
|
let deferred0_0;
|
|
5153
5163
|
let deferred0_1;
|
|
@@ -5162,7 +5172,7 @@ export function __wbg_remove_2d6d9bd3eaac392b() {
|
|
|
5162
5172
|
}, arguments);
|
|
5163
5173
|
}
|
|
5164
5174
|
|
|
5165
|
-
export function
|
|
5175
|
+
export function __wbg_remove_d592b4ab55fa372d() {
|
|
5166
5176
|
return handleError(function (arg0, arg1, arg2) {
|
|
5167
5177
|
let deferred0_0;
|
|
5168
5178
|
let deferred0_1;
|
|
@@ -5208,11 +5218,7 @@ export function __wbg_setTimeout_ca12ead8b48245e2(arg0, arg1) {
|
|
|
5208
5218
|
return addHeapObject(ret);
|
|
5209
5219
|
}
|
|
5210
5220
|
|
|
5211
|
-
export function
|
|
5212
|
-
getObject(arg0)[takeObject(arg1)] = takeObject(arg2);
|
|
5213
|
-
}
|
|
5214
|
-
|
|
5215
|
-
export function __wbg_set_5235cc0f26ed539b() {
|
|
5221
|
+
export function __wbg_set_16779e1c12161eee() {
|
|
5216
5222
|
return handleError(function (arg0, arg1, arg2, arg3) {
|
|
5217
5223
|
let deferred0_0;
|
|
5218
5224
|
let deferred0_1;
|
|
@@ -5227,7 +5233,11 @@ export function __wbg_set_5235cc0f26ed539b() {
|
|
|
5227
5233
|
}, arguments);
|
|
5228
5234
|
}
|
|
5229
5235
|
|
|
5230
|
-
export function
|
|
5236
|
+
export function __wbg_set_3f1d0b984ed272ed(arg0, arg1, arg2) {
|
|
5237
|
+
getObject(arg0)[takeObject(arg1)] = takeObject(arg2);
|
|
5238
|
+
}
|
|
5239
|
+
|
|
5240
|
+
export function __wbg_set_6d45f26bc45340a7() {
|
|
5231
5241
|
return handleError(function (arg0, arg1, arg2, arg3) {
|
|
5232
5242
|
let deferred0_0;
|
|
5233
5243
|
let deferred0_1;
|
|
@@ -5430,17 +5440,6 @@ export function __wbg_warn_8f5b5437666d0885(arg0, arg1, arg2, arg3) {
|
|
|
5430
5440
|
console.warn(getObject(arg0), getObject(arg1), getObject(arg2), getObject(arg3));
|
|
5431
5441
|
}
|
|
5432
5442
|
|
|
5433
|
-
export function __wbindgen_cast_1dc3b0d4f0abedd3(arg0, arg1) {
|
|
5434
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx: 298, function: Function { arguments: [Externref], shim_idx: 44, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
5435
|
-
const ret = makeMutClosure(
|
|
5436
|
-
arg0,
|
|
5437
|
-
arg1,
|
|
5438
|
-
wasm.wasm_bindgen__closure__destroy__h5bf455f3385c4f71,
|
|
5439
|
-
wasm_bindgen__convert__closures_____invoke__h3bed1aa0e3f56559,
|
|
5440
|
-
);
|
|
5441
|
-
return addHeapObject(ret);
|
|
5442
|
-
}
|
|
5443
|
-
|
|
5444
5443
|
export function __wbindgen_cast_2241b6af4c4b2941(arg0, arg1) {
|
|
5445
5444
|
// Cast intrinsic for `Ref(String) -> Externref`.
|
|
5446
5445
|
const ret = getStringFromWasm0(arg0, arg1);
|
|
@@ -5452,8 +5451,8 @@ export function __wbindgen_cast_4042b341512ce63a(arg0, arg1) {
|
|
|
5452
5451
|
const ret = makeMutClosure(
|
|
5453
5452
|
arg0,
|
|
5454
5453
|
arg1,
|
|
5455
|
-
wasm.
|
|
5456
|
-
|
|
5454
|
+
wasm.wasm_bindgen__closure__destroy__h09d4e676b918dc23,
|
|
5455
|
+
wasm_bindgen__convert__closures_____invoke__h5c75b123e343f7aa,
|
|
5457
5456
|
);
|
|
5458
5457
|
return addHeapObject(ret);
|
|
5459
5458
|
}
|
|
@@ -5464,6 +5463,17 @@ export function __wbindgen_cast_4625c577ab2ec9ee(arg0) {
|
|
|
5464
5463
|
return addHeapObject(ret);
|
|
5465
5464
|
}
|
|
5466
5465
|
|
|
5466
|
+
export function __wbindgen_cast_567ce6425eb96825(arg0, arg1) {
|
|
5467
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 551, function: Function { arguments: [], shim_idx: 305, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
5468
|
+
const ret = makeMutClosure(
|
|
5469
|
+
arg0,
|
|
5470
|
+
arg1,
|
|
5471
|
+
wasm.wasm_bindgen__closure__destroy__hfcb631b72e5e985c,
|
|
5472
|
+
wasm_bindgen__convert__closures_____invoke__h092300064b8afb1e,
|
|
5473
|
+
);
|
|
5474
|
+
return addHeapObject(ret);
|
|
5475
|
+
}
|
|
5476
|
+
|
|
5467
5477
|
export function __wbindgen_cast_5fea77eff9dd275c(arg0, arg1) {
|
|
5468
5478
|
var v0 = getArrayJsValueFromWasm0(arg0, arg1).slice();
|
|
5469
5479
|
wasm.__wbindgen_free(arg0, arg1 * 4, 4);
|
|
@@ -5472,22 +5482,33 @@ export function __wbindgen_cast_5fea77eff9dd275c(arg0, arg1) {
|
|
|
5472
5482
|
return addHeapObject(ret);
|
|
5473
5483
|
}
|
|
5474
5484
|
|
|
5475
|
-
export function
|
|
5476
|
-
|
|
5485
|
+
export function __wbindgen_cast_7a6d185652cd8149(arg0, arg1) {
|
|
5486
|
+
var v0 = getArrayJsValueFromWasm0(arg0, arg1).slice();
|
|
5487
|
+
wasm.__wbindgen_free(arg0, arg1 * 4, 4);
|
|
5488
|
+
// Cast intrinsic for `Vector(NamedExternref("Cipher")) -> Externref`.
|
|
5489
|
+
const ret = v0;
|
|
5490
|
+
return addHeapObject(ret);
|
|
5491
|
+
}
|
|
5492
|
+
|
|
5493
|
+
export function __wbindgen_cast_8340b5b160d85933(arg0, arg1) {
|
|
5494
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 304, function: Function { arguments: [], shim_idx: 305, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
5477
5495
|
const ret = makeMutClosure(
|
|
5478
5496
|
arg0,
|
|
5479
5497
|
arg1,
|
|
5480
|
-
wasm.
|
|
5498
|
+
wasm.wasm_bindgen__closure__destroy__h5bf455f3385c4f71,
|
|
5481
5499
|
wasm_bindgen__convert__closures_____invoke__h092300064b8afb1e,
|
|
5482
5500
|
);
|
|
5483
5501
|
return addHeapObject(ret);
|
|
5484
5502
|
}
|
|
5485
5503
|
|
|
5486
|
-
export function
|
|
5487
|
-
|
|
5488
|
-
|
|
5489
|
-
|
|
5490
|
-
|
|
5504
|
+
export function __wbindgen_cast_9654b59eb60e619d(arg0, arg1) {
|
|
5505
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 304, function: Function { arguments: [Externref], shim_idx: 44, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
5506
|
+
const ret = makeMutClosure(
|
|
5507
|
+
arg0,
|
|
5508
|
+
arg1,
|
|
5509
|
+
wasm.wasm_bindgen__closure__destroy__h5bf455f3385c4f71,
|
|
5510
|
+
wasm_bindgen__convert__closures_____invoke__h5c75b123e343f7aa,
|
|
5511
|
+
);
|
|
5491
5512
|
return addHeapObject(ret);
|
|
5492
5513
|
}
|
|
5493
5514
|
|
|
@@ -5508,8 +5529,8 @@ export function __wbindgen_cast_d49c305f67640cb1(arg0, arg1) {
|
|
|
5508
5529
|
const ret = makeMutClosure(
|
|
5509
5530
|
arg0,
|
|
5510
5531
|
arg1,
|
|
5511
|
-
wasm.
|
|
5512
|
-
|
|
5532
|
+
wasm.wasm_bindgen__closure__destroy__h09d4e676b918dc23,
|
|
5533
|
+
wasm_bindgen__convert__closures_____invoke__hb20fdca52a2a2cdf,
|
|
5513
5534
|
);
|
|
5514
5535
|
return addHeapObject(ret);
|
|
5515
5536
|
}
|
|
@@ -5520,17 +5541,6 @@ export function __wbindgen_cast_d6cd19b81560fd6e(arg0) {
|
|
|
5520
5541
|
return addHeapObject(ret);
|
|
5521
5542
|
}
|
|
5522
5543
|
|
|
5523
|
-
export function __wbindgen_cast_d87bfd09ab1288e4(arg0, arg1) {
|
|
5524
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx: 298, function: Function { arguments: [], shim_idx: 299, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
5525
|
-
const ret = makeMutClosure(
|
|
5526
|
-
arg0,
|
|
5527
|
-
arg1,
|
|
5528
|
-
wasm.wasm_bindgen__closure__destroy__h5bf455f3385c4f71,
|
|
5529
|
-
wasm_bindgen__convert__closures_____invoke__h092300064b8afb1e,
|
|
5530
|
-
);
|
|
5531
|
-
return addHeapObject(ret);
|
|
5532
|
-
}
|
|
5533
|
-
|
|
5534
5544
|
export function __wbindgen_cast_ef90a087adb7475d(arg0, arg1) {
|
|
5535
5545
|
var v0 = getArrayJsValueFromWasm0(arg0, arg1).slice();
|
|
5536
5546
|
wasm.__wbindgen_free(arg0, arg1 * 4, 4);
|
|
Binary file
|
|
@@ -447,24 +447,24 @@ export const __wbg_totpclient_free: (a: number, b: number) => void;
|
|
|
447
447
|
export const __wbg_get_outgoingmessage_destination: (a: number) => number;
|
|
448
448
|
export const __wbg_set_outgoingmessage_destination: (a: number, b: number) => void;
|
|
449
449
|
export const __wbg_cryptoclient_free: (a: number, b: number) => void;
|
|
450
|
-
export const
|
|
450
|
+
export const wasm_bindgen__convert__closures_____invoke__h5c75b123e343f7aa: (
|
|
451
451
|
a: number,
|
|
452
452
|
b: number,
|
|
453
|
+
c: number,
|
|
453
454
|
) => void;
|
|
454
|
-
export const
|
|
455
|
-
export const
|
|
455
|
+
export const wasm_bindgen__closure__destroy__h09d4e676b918dc23: (a: number, b: number) => void;
|
|
456
|
+
export const wasm_bindgen__convert__closures_____invoke__h092300064b8afb1e: (
|
|
456
457
|
a: number,
|
|
457
458
|
b: number,
|
|
458
|
-
c: number,
|
|
459
|
-
d: number,
|
|
460
459
|
) => void;
|
|
461
|
-
export const
|
|
462
|
-
export const
|
|
460
|
+
export const wasm_bindgen__closure__destroy__h5bf455f3385c4f71: (a: number, b: number) => void;
|
|
461
|
+
export const wasm_bindgen__closure__destroy__hfcb631b72e5e985c: (a: number, b: number) => void;
|
|
462
|
+
export const wasm_bindgen__convert__closures_____invoke__hb20fdca52a2a2cdf: (
|
|
463
463
|
a: number,
|
|
464
464
|
b: number,
|
|
465
465
|
c: number,
|
|
466
|
+
d: number,
|
|
466
467
|
) => void;
|
|
467
|
-
export const wasm_bindgen__closure__destroy__hfcb631b72e5e985c: (a: number, b: number) => void;
|
|
468
468
|
export const wasm_bindgen__convert__closures_____invoke__h43dfd80678632d6f: (
|
|
469
469
|
a: number,
|
|
470
470
|
b: number,
|