@bitcredit/bcr-ebill-wasm 0.5.1-1 → 0.5.2
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/index.d.ts +30 -14
- package/index.js +226 -226
- package/index_bg.wasm +0 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -789,7 +789,23 @@ export interface SignatoryResponse {
|
|
|
789
789
|
}
|
|
790
790
|
|
|
791
791
|
export interface StatusResponse {
|
|
792
|
+
/**
|
|
793
|
+
* Name of the currently configured Bitcoin network (e.g. `mainnet`, `testnet`).
|
|
794
|
+
*/
|
|
792
795
|
bitcoin_network: string;
|
|
796
|
+
/**
|
|
797
|
+
* `true` if the app has an active connection to at least one configured Nostr relay.
|
|
798
|
+
*
|
|
799
|
+
* This reflects the status of the Nostr transport layer, not general internet
|
|
800
|
+
* connectivity or backend/database availability. When `connected` is `false`,
|
|
801
|
+
* operations that require Nostr (such as bill synchronization with other peers,
|
|
802
|
+
* sending or receiving notifications, or other relay-based messaging) will not
|
|
803
|
+
* be able to communicate over the network and may fall back to local-only state.
|
|
804
|
+
*/
|
|
805
|
+
connected: boolean;
|
|
806
|
+
/**
|
|
807
|
+
* Semantic version of the running E-Bills application backend.
|
|
808
|
+
*/
|
|
793
809
|
app_version: string;
|
|
794
810
|
}
|
|
795
811
|
|
|
@@ -833,7 +849,7 @@ export type CompanyStatusWeb = "Invited" | "Active" | "None";
|
|
|
833
849
|
|
|
834
850
|
export type GeneralSearchFilterItemTypeWeb = "Company" | "Bill" | "Contact";
|
|
835
851
|
|
|
836
|
-
export type JsErrorType = "FieldEmpty" | "FieldInvalid" | "InvalidSum" | "InvalidCurrency" | "InvalidContentType" | "IdentityCantBeAnon" | "InvalidContactType" | "InvalidIdentityType" | "InvalidDate" | "InvalidCountry" | "InvalidTimestamp" | "DeadlineBeforeMinimum" | "SelfDraftedBillCantBeBlank" | "RequestToMintForBillAndMintAlreadyActive" | "SignerCantBeAnon" | "ContactIsAnonymous" | "InvalidContact" | "InvalidMint" | "IssueDateAfterMaturityDate" | "MaturityDateInThePast" | "InvalidFileUploadId" | "InvalidNodeId" | "InvalidBillId" | "InvalidBillType" | "DraweeCantBePayee" | "EndorserCantBeEndorsee" | "BuyerCantBeSeller" | "RecourserCantBeRecoursee" | "DraweeNotInContacts" | "PayeeNotInContacts" | "MintNotInContacts" | "BuyerNotInContacts" | "EndorseeNotInContacts" | "RecourseeNotInContacts" | "CancelMintRequestNotPending" | "RejectMintRequestNotOffered" | "AcceptMintRequestNotOffered" | "AcceptMintOfferExpired" | "NoConfirmedEmailForIdentIdentity" | "NoFileForFileUploadId" | "NotFound" | "ExternalApi" | "Crypto" | "Persistence" | "Blockchain" | "Protocol" | "InvalidRelayUrl" | "Serialization" | "Init" | "NotificationNetwork" | "NotificationMessage" | "InvalidOperation" | "BillAlreadyAccepted" | "BillWasRejectedToAccept" | "BillAcceptanceExpired" | "BillWasRejectedToPay" | "BillPaymentExpired" | "BillWasRecoursedToTheEnd" | "BillAlreadyRequestedToAccept" | "BillNotAccepted" | "CallerIsNotDrawee" | "CallerIsNotHolder" | "CallerIsNotRecoursee" | "CallerIsNotBuyer" | "RequestAlreadyRejected" | "BillAlreadyPaid" | "BillWasNotRequestedToPay" | "BillWasNotOfferedToSell" | "BillRequestToAcceptDidNotExpireAndWasNotRejected" | "BillRequestToPayDidNotExpireAndWasNotRejected" | "RecourseeNotPastHolder" | "BillWasNotRequestedToRecourse" | "BillIsNotRequestedToRecourseAndWaitingForPayment" | "BillIsNotOfferToSellWaitingForPayment" | "BillSellDataInvalid" | "BillRecourseDataInvalid" | "BillIsRequestedToPayAndWaitingForPayment" | "BillIsOfferedToSellAndWaitingForPayment" | "BillIsInRecourseAndWaitingForPayment" | "SignatoryNotInContacts" | "SignatoryAlreadySignatory" | "CantRemoveLastSignatory" | "NotASignatory" | "NotARemovedOrRejectedSignatory" | "NotInvitedAsSignatory" | "NoSignerIdentityProof" | "FileIsTooBig" | "FileIsEmpty" | "TooManyFiles" | "InvalidFileName" | "UnknownNodeId" | "CallerMustBeSignatory" | "InvalidSignature" | "InvalidHash" | "InvalidUrl" | "InvalidIdentityProofStatus" | "Json" | "InvalidBillAction" | "InvalidMintRequestId";
|
|
852
|
+
export type JsErrorType = "FieldEmpty" | "FieldInvalid" | "InvalidSum" | "InvalidCurrency" | "InvalidContentType" | "IdentityCantBeAnon" | "InvalidContactType" | "InvalidIdentityType" | "InvalidDate" | "InvalidCountry" | "InvalidTimestamp" | "DeadlineBeforeMinimum" | "SelfDraftedBillCantBeBlank" | "RequestToMintForBillAndMintAlreadyActive" | "SignerCantBeAnon" | "ContactIsAnonymous" | "InvalidContact" | "InvalidMint" | "IssueDateAfterMaturityDate" | "MaturityDateInThePast" | "InvalidFileUploadId" | "InvalidNodeId" | "InvalidBillId" | "InvalidBillType" | "DraweeCantBePayee" | "EndorserCantBeEndorsee" | "BuyerCantBeSeller" | "RecourserCantBeRecoursee" | "DraweeNotInContacts" | "PayeeNotInContacts" | "MintNotInContacts" | "BuyerNotInContacts" | "EndorseeNotInContacts" | "RecourseeNotInContacts" | "CancelMintRequestNotPending" | "RejectMintRequestNotOffered" | "AcceptMintRequestNotOffered" | "AcceptMintOfferExpired" | "NoConfirmedEmailForIdentIdentity" | "NoFileForFileUploadId" | "NotFound" | "ExternalApi" | "Crypto" | "Persistence" | "Blockchain" | "Protocol" | "InvalidRelayUrl" | "Serialization" | "Init" | "NotificationNetwork" | "NotificationMessage" | "InvalidOperation" | "BillAlreadyAccepted" | "BillWasRejectedToAccept" | "BillAcceptanceExpired" | "BillWasRejectedToPay" | "BillPaymentExpired" | "BillWasRecoursedToTheEnd" | "BillAlreadyRequestedToAccept" | "BillNotAccepted" | "CallerIsNotDrawee" | "CallerIsNotHolder" | "CallerIsNotRecoursee" | "CallerIsNotBuyer" | "RequestAlreadyRejected" | "BillAlreadyPaid" | "BillWasNotRequestedToPay" | "BillWasNotOfferedToSell" | "BillRequestToAcceptDidNotExpireAndWasNotRejected" | "BillRequestToPayDidNotExpireAndWasNotRejected" | "RecourseeNotPastHolder" | "BillWasNotRequestedToRecourse" | "BillIsNotRequestedToRecourseAndWaitingForPayment" | "BillIsNotOfferToSellWaitingForPayment" | "BillSellDataInvalid" | "BillRecourseDataInvalid" | "BillIsRequestedToPayAndWaitingForPayment" | "BillIsOfferedToSellAndWaitingForPayment" | "BillIsInRecourseAndWaitingForPayment" | "SignatoryNotInContacts" | "SignatoryAlreadySignatory" | "CantRemoveLastSignatory" | "NotASignatory" | "NotARemovedOrRejectedSignatory" | "NotInvitedAsSignatory" | "NoSignerIdentityProof" | "FileIsTooBig" | "FileIsEmpty" | "TooManyFiles" | "InvalidFileName" | "UnknownNodeId" | "CallerMustBeSignatory" | "InvalidIdentityProof" | "InvalidReferenceBlock" | "InvalidSignature" | "InvalidHash" | "InvalidUrl" | "InvalidIdentityProofStatus" | "Json" | "InvalidBillAction" | "InvalidCompanyAction" | "CompanySignerCreatorMismatch" | "InvalidMintRequestId";
|
|
837
853
|
|
|
838
854
|
export type LightBillParticipantWeb = { Anon: LightBillAnonParticipantWeb } | { Ident: LightBillIdentParticipantWithAddressWeb };
|
|
839
855
|
|
|
@@ -1173,22 +1189,22 @@ export interface InitOutput {
|
|
|
1173
1189
|
readonly general_new: () => number;
|
|
1174
1190
|
readonly identity_new: () => number;
|
|
1175
1191
|
readonly notification_new: () => number;
|
|
1176
|
-
readonly __wbg_identity_free: (a: number, b: number) => void;
|
|
1177
|
-
readonly __wbg_bill_free: (a: number, b: number) => void;
|
|
1178
|
-
readonly __wbg_general_free: (a: number, b: number) => void;
|
|
1179
1192
|
readonly __wbg_contact_free: (a: number, b: number) => void;
|
|
1193
|
+
readonly __wbg_general_free: (a: number, b: number) => void;
|
|
1180
1194
|
readonly __wbg_company_free: (a: number, b: number) => void;
|
|
1195
|
+
readonly __wbg_bill_free: (a: number, b: number) => void;
|
|
1181
1196
|
readonly __wbg_notification_free: (a: number, b: number) => void;
|
|
1182
|
-
readonly
|
|
1183
|
-
readonly
|
|
1184
|
-
readonly
|
|
1185
|
-
readonly
|
|
1186
|
-
readonly
|
|
1187
|
-
readonly
|
|
1188
|
-
readonly
|
|
1189
|
-
readonly
|
|
1190
|
-
readonly
|
|
1191
|
-
readonly
|
|
1197
|
+
readonly __wbg_identity_free: (a: number, b: number) => void;
|
|
1198
|
+
readonly wasm_bindgen__closure__destroy__h2b64577c0d30e7ff: (a: number, b: number) => void;
|
|
1199
|
+
readonly wasm_bindgen__closure__destroy__h56f6a1c416286713: (a: number, b: number) => void;
|
|
1200
|
+
readonly wasm_bindgen__closure__destroy__h2681b741ef6c8dcf: (a: number, b: number) => void;
|
|
1201
|
+
readonly wasm_bindgen__convert__closures_____invoke__h6aec09e193342f93: (a: number, b: number, c: any) => [number, number];
|
|
1202
|
+
readonly wasm_bindgen__convert__closures_____invoke__h5f1e16860b61a77a: (a: number, b: number, c: any) => [number, number];
|
|
1203
|
+
readonly wasm_bindgen__convert__closures_____invoke__h0a7adf7d3880a828: (a: number, b: number, c: any, d: any) => void;
|
|
1204
|
+
readonly wasm_bindgen__convert__closures_____invoke__h60259d0a007c8ff6: (a: number, b: number, c: any) => void;
|
|
1205
|
+
readonly wasm_bindgen__convert__closures_____invoke__h60259d0a007c8ff6_2: (a: number, b: number, c: any) => void;
|
|
1206
|
+
readonly wasm_bindgen__convert__closures_____invoke__h3af009eb2e384dae: (a: number, b: number) => void;
|
|
1207
|
+
readonly wasm_bindgen__convert__closures_____invoke__hf807c24f46a17e5e: (a: number, b: number) => void;
|
|
1192
1208
|
readonly __wbindgen_malloc: (a: number, b: number) => number;
|
|
1193
1209
|
readonly __wbindgen_realloc: (a: number, b: number, c: number, d: number) => number;
|
|
1194
1210
|
readonly __wbindgen_exn_store: (a: number) => void;
|
package/index.js
CHANGED
|
@@ -1179,11 +1179,11 @@ export function task_worker_entry_point(ptr) {
|
|
|
1179
1179
|
function __wbg_get_imports() {
|
|
1180
1180
|
const import0 = {
|
|
1181
1181
|
__proto__: null,
|
|
1182
|
-
|
|
1182
|
+
__wbg_Error_83742b46f01ce22d: function(arg0, arg1) {
|
|
1183
1183
|
const ret = Error(getStringFromWasm0(arg0, arg1));
|
|
1184
1184
|
return ret;
|
|
1185
1185
|
},
|
|
1186
|
-
|
|
1186
|
+
__wbg_Number_a5a435bd7bbec835: function(arg0) {
|
|
1187
1187
|
const ret = Number(arg0);
|
|
1188
1188
|
return ret;
|
|
1189
1189
|
},
|
|
@@ -1194,68 +1194,68 @@ function __wbg_get_imports() {
|
|
|
1194
1194
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1195
1195
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1196
1196
|
},
|
|
1197
|
-
|
|
1197
|
+
__wbg___wbindgen_bigint_get_as_i64_447a76b5c6ef7bda: function(arg0, arg1) {
|
|
1198
1198
|
const v = arg1;
|
|
1199
1199
|
const ret = typeof(v) === 'bigint' ? v : undefined;
|
|
1200
1200
|
getDataViewMemory0().setBigInt64(arg0 + 8 * 1, isLikeNone(ret) ? BigInt(0) : ret, true);
|
|
1201
1201
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
|
1202
1202
|
},
|
|
1203
|
-
|
|
1203
|
+
__wbg___wbindgen_boolean_get_c0f3f60bac5a78d1: function(arg0) {
|
|
1204
1204
|
const v = arg0;
|
|
1205
1205
|
const ret = typeof(v) === 'boolean' ? v : undefined;
|
|
1206
1206
|
return isLikeNone(ret) ? 0xFFFFFF : ret ? 1 : 0;
|
|
1207
1207
|
},
|
|
1208
|
-
|
|
1208
|
+
__wbg___wbindgen_debug_string_5398f5bb970e0daa: function(arg0, arg1) {
|
|
1209
1209
|
const ret = debugString(arg1);
|
|
1210
1210
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1211
1211
|
const len1 = WASM_VECTOR_LEN;
|
|
1212
1212
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1213
1213
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1214
1214
|
},
|
|
1215
|
-
|
|
1215
|
+
__wbg___wbindgen_in_41dbb8413020e076: function(arg0, arg1) {
|
|
1216
1216
|
const ret = arg0 in arg1;
|
|
1217
1217
|
return ret;
|
|
1218
1218
|
},
|
|
1219
|
-
|
|
1219
|
+
__wbg___wbindgen_is_bigint_e2141d4f045b7eda: function(arg0) {
|
|
1220
1220
|
const ret = typeof(arg0) === 'bigint';
|
|
1221
1221
|
return ret;
|
|
1222
1222
|
},
|
|
1223
|
-
|
|
1223
|
+
__wbg___wbindgen_is_falsy_30906e697739fcc2: function(arg0) {
|
|
1224
1224
|
const ret = !arg0;
|
|
1225
1225
|
return ret;
|
|
1226
1226
|
},
|
|
1227
|
-
|
|
1227
|
+
__wbg___wbindgen_is_function_3c846841762788c1: function(arg0) {
|
|
1228
1228
|
const ret = typeof(arg0) === 'function';
|
|
1229
1229
|
return ret;
|
|
1230
1230
|
},
|
|
1231
|
-
|
|
1231
|
+
__wbg___wbindgen_is_object_781bc9f159099513: function(arg0) {
|
|
1232
1232
|
const val = arg0;
|
|
1233
1233
|
const ret = typeof(val) === 'object' && val !== null;
|
|
1234
1234
|
return ret;
|
|
1235
1235
|
},
|
|
1236
|
-
|
|
1236
|
+
__wbg___wbindgen_is_string_7ef6b97b02428fae: function(arg0) {
|
|
1237
1237
|
const ret = typeof(arg0) === 'string';
|
|
1238
1238
|
return ret;
|
|
1239
1239
|
},
|
|
1240
|
-
|
|
1240
|
+
__wbg___wbindgen_is_undefined_52709e72fb9f179c: function(arg0) {
|
|
1241
1241
|
const ret = arg0 === undefined;
|
|
1242
1242
|
return ret;
|
|
1243
1243
|
},
|
|
1244
|
-
|
|
1244
|
+
__wbg___wbindgen_jsval_eq_ee31bfad3e536463: function(arg0, arg1) {
|
|
1245
1245
|
const ret = arg0 === arg1;
|
|
1246
1246
|
return ret;
|
|
1247
1247
|
},
|
|
1248
|
-
|
|
1248
|
+
__wbg___wbindgen_jsval_loose_eq_5bcc3bed3c69e72b: function(arg0, arg1) {
|
|
1249
1249
|
const ret = arg0 == arg1;
|
|
1250
1250
|
return ret;
|
|
1251
1251
|
},
|
|
1252
|
-
|
|
1252
|
+
__wbg___wbindgen_number_get_34bb9d9dcfa21373: function(arg0, arg1) {
|
|
1253
1253
|
const obj = arg1;
|
|
1254
1254
|
const ret = typeof(obj) === 'number' ? obj : undefined;
|
|
1255
1255
|
getDataViewMemory0().setFloat64(arg0 + 8 * 1, isLikeNone(ret) ? 0 : ret, true);
|
|
1256
1256
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
|
1257
1257
|
},
|
|
1258
|
-
|
|
1258
|
+
__wbg___wbindgen_string_get_395e606bd0ee4427: function(arg0, arg1) {
|
|
1259
1259
|
const obj = arg1;
|
|
1260
1260
|
const ret = typeof(obj) === 'string' ? obj : undefined;
|
|
1261
1261
|
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
@@ -1263,40 +1263,40 @@ function __wbg_get_imports() {
|
|
|
1263
1263
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1264
1264
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1265
1265
|
},
|
|
1266
|
-
|
|
1266
|
+
__wbg___wbindgen_throw_6ddd609b62940d55: function(arg0, arg1) {
|
|
1267
1267
|
throw new Error(getStringFromWasm0(arg0, arg1));
|
|
1268
1268
|
},
|
|
1269
|
-
|
|
1269
|
+
__wbg__wbg_cb_unref_6b5b6b8576d35cb1: function(arg0) {
|
|
1270
1270
|
arg0._wbg_cb_unref();
|
|
1271
1271
|
},
|
|
1272
|
-
|
|
1273
|
-
arg0.abort();
|
|
1274
|
-
}, arguments); },
|
|
1275
|
-
__wbg_abort_695597a7a37354a1: function(arg0) {
|
|
1272
|
+
__wbg_abort_5ef96933660780b7: function(arg0) {
|
|
1276
1273
|
arg0.abort();
|
|
1277
1274
|
},
|
|
1278
|
-
|
|
1275
|
+
__wbg_abort_60dcb252ae0031fc: function() { return handleError(function (arg0) {
|
|
1276
|
+
arg0.abort();
|
|
1277
|
+
}, arguments); },
|
|
1278
|
+
__wbg_abort_6479c2d794ebf2ee: function(arg0, arg1) {
|
|
1279
1279
|
arg0.abort(arg1);
|
|
1280
1280
|
},
|
|
1281
|
-
|
|
1281
|
+
__wbg_advance_670851c833f4530f: function() { return handleError(function (arg0, arg1) {
|
|
1282
1282
|
arg0.advance(arg1 >>> 0);
|
|
1283
1283
|
}, arguments); },
|
|
1284
|
-
|
|
1284
|
+
__wbg_append_608dfb635ee8998f: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
1285
1285
|
arg0.append(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
1286
1286
|
}, arguments); },
|
|
1287
|
-
|
|
1287
|
+
__wbg_arrayBuffer_eb8e9ca620af2a19: function() { return handleError(function (arg0) {
|
|
1288
1288
|
const ret = arg0.arrayBuffer();
|
|
1289
1289
|
return ret;
|
|
1290
1290
|
}, arguments); },
|
|
1291
|
-
|
|
1291
|
+
__wbg_bound_4e343b4fbe5419fa: function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
1292
1292
|
const ret = IDBKeyRange.bound(arg0, arg1, arg2 !== 0, arg3 !== 0);
|
|
1293
1293
|
return ret;
|
|
1294
1294
|
}, arguments); },
|
|
1295
|
-
|
|
1295
|
+
__wbg_call_2d781c1f4d5c0ef8: function() { return handleError(function (arg0, arg1, arg2) {
|
|
1296
1296
|
const ret = arg0.call(arg1, arg2);
|
|
1297
1297
|
return ret;
|
|
1298
1298
|
}, arguments); },
|
|
1299
|
-
|
|
1299
|
+
__wbg_call_e133b57c9155d22c: function() { return handleError(function (arg0, arg1) {
|
|
1300
1300
|
const ret = arg0.call(arg1);
|
|
1301
1301
|
return ret;
|
|
1302
1302
|
}, arguments); },
|
|
@@ -1311,29 +1311,29 @@ function __wbg_get_imports() {
|
|
|
1311
1311
|
const ret = clearTimeout(arg0);
|
|
1312
1312
|
return ret;
|
|
1313
1313
|
},
|
|
1314
|
-
|
|
1314
|
+
__wbg_close_af26905c832a88cb: function() { return handleError(function (arg0) {
|
|
1315
1315
|
arg0.close();
|
|
1316
1316
|
}, arguments); },
|
|
1317
|
-
|
|
1317
|
+
__wbg_code_aea376e2d265a64f: function(arg0) {
|
|
1318
1318
|
const ret = arg0.code;
|
|
1319
1319
|
return ret;
|
|
1320
1320
|
},
|
|
1321
|
-
|
|
1321
|
+
__wbg_code_bc4dde4d67926010: function(arg0) {
|
|
1322
1322
|
const ret = arg0.code;
|
|
1323
1323
|
return ret;
|
|
1324
1324
|
},
|
|
1325
|
-
|
|
1325
|
+
__wbg_contains_ef4bfb7fa5a241b7: function(arg0, arg1, arg2) {
|
|
1326
1326
|
const ret = arg0.contains(getStringFromWasm0(arg1, arg2));
|
|
1327
1327
|
return ret;
|
|
1328
1328
|
},
|
|
1329
|
-
|
|
1329
|
+
__wbg_continue_44abcf9ba406e87e: function() { return handleError(function (arg0) {
|
|
1330
1330
|
arg0.continue();
|
|
1331
1331
|
}, arguments); },
|
|
1332
|
-
|
|
1332
|
+
__wbg_createIndex_323cb0213cc21d9b: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
1333
1333
|
const ret = arg0.createIndex(getStringFromWasm0(arg1, arg2), arg3, arg4);
|
|
1334
1334
|
return ret;
|
|
1335
1335
|
}, arguments); },
|
|
1336
|
-
|
|
1336
|
+
__wbg_createObjectStore_4709de9339ffc6c0: function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
1337
1337
|
const ret = arg0.createObjectStore(getStringFromWasm0(arg1, arg2), arg3);
|
|
1338
1338
|
return ret;
|
|
1339
1339
|
}, arguments); },
|
|
@@ -1341,34 +1341,38 @@ function __wbg_get_imports() {
|
|
|
1341
1341
|
const ret = arg0.crypto;
|
|
1342
1342
|
return ret;
|
|
1343
1343
|
},
|
|
1344
|
-
|
|
1344
|
+
__wbg_data_a3d9ff9cdd801002: function(arg0) {
|
|
1345
1345
|
const ret = arg0.data;
|
|
1346
1346
|
return ret;
|
|
1347
1347
|
},
|
|
1348
|
-
|
|
1348
|
+
__wbg_debug_271c16e6de0bc226: function(arg0, arg1, arg2, arg3) {
|
|
1349
1349
|
console.debug(arg0, arg1, arg2, arg3);
|
|
1350
1350
|
},
|
|
1351
|
-
|
|
1351
|
+
__wbg_deleteIndex_9391b8bace7b0b18: function() { return handleError(function (arg0, arg1, arg2) {
|
|
1352
1352
|
arg0.deleteIndex(getStringFromWasm0(arg1, arg2));
|
|
1353
1353
|
}, arguments); },
|
|
1354
|
-
|
|
1354
|
+
__wbg_deleteObjectStore_65401ab024ac08c1: function() { return handleError(function (arg0, arg1, arg2) {
|
|
1355
1355
|
arg0.deleteObjectStore(getStringFromWasm0(arg1, arg2));
|
|
1356
1356
|
}, arguments); },
|
|
1357
|
-
|
|
1357
|
+
__wbg_delete_40db93c05c546fb9: function() { return handleError(function (arg0, arg1) {
|
|
1358
1358
|
const ret = arg0.delete(arg1);
|
|
1359
1359
|
return ret;
|
|
1360
1360
|
}, arguments); },
|
|
1361
|
-
|
|
1361
|
+
__wbg_done_08ce71ee07e3bd17: function(arg0) {
|
|
1362
1362
|
const ret = arg0.done;
|
|
1363
1363
|
return ret;
|
|
1364
1364
|
},
|
|
1365
|
-
|
|
1365
|
+
__wbg_entries_e8a20ff8c9757101: function(arg0) {
|
|
1366
1366
|
const ret = Object.entries(arg0);
|
|
1367
1367
|
return ret;
|
|
1368
1368
|
},
|
|
1369
|
-
|
|
1369
|
+
__wbg_error_1eece6b0039034ce: function(arg0, arg1, arg2, arg3) {
|
|
1370
1370
|
console.error(arg0, arg1, arg2, arg3);
|
|
1371
1371
|
},
|
|
1372
|
+
__wbg_error_74898554122344a8: function() { return handleError(function (arg0) {
|
|
1373
|
+
const ret = arg0.error;
|
|
1374
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1375
|
+
}, arguments); },
|
|
1372
1376
|
__wbg_error_a6fa202b58aa1cd3: function(arg0, arg1) {
|
|
1373
1377
|
let deferred0_0;
|
|
1374
1378
|
let deferred0_1;
|
|
@@ -1380,14 +1384,10 @@ function __wbg_get_imports() {
|
|
|
1380
1384
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
1381
1385
|
}
|
|
1382
1386
|
},
|
|
1383
|
-
__wbg_error_aa2a27edab4130dc: function() { return handleError(function (arg0) {
|
|
1384
|
-
const ret = arg0.error;
|
|
1385
|
-
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1386
|
-
}, arguments); },
|
|
1387
1387
|
__wbg_error_ba2b2915aeba36d8: function(arg0, arg1) {
|
|
1388
1388
|
console.error(getStringFromWasm0(arg0, arg1));
|
|
1389
1389
|
},
|
|
1390
|
-
|
|
1390
|
+
__wbg_fetch_5550a88cf343aaa9: function(arg0, arg1) {
|
|
1391
1391
|
const ret = arg0.fetch(arg1);
|
|
1392
1392
|
return ret;
|
|
1393
1393
|
},
|
|
@@ -1404,38 +1404,38 @@ function __wbg_get_imports() {
|
|
|
1404
1404
|
__wbg_getRandomValues_c44a50d8cfdaebeb: function() { return handleError(function (arg0, arg1) {
|
|
1405
1405
|
arg0.getRandomValues(arg1);
|
|
1406
1406
|
}, arguments); },
|
|
1407
|
-
|
|
1407
|
+
__wbg_getTime_1dad7b5386ddd2d9: function(arg0) {
|
|
1408
1408
|
const ret = arg0.getTime();
|
|
1409
1409
|
return ret;
|
|
1410
1410
|
},
|
|
1411
|
-
|
|
1411
|
+
__wbg_getTimezoneOffset_639bcf2dde21158b: function(arg0) {
|
|
1412
1412
|
const ret = arg0.getTimezoneOffset();
|
|
1413
1413
|
return ret;
|
|
1414
1414
|
},
|
|
1415
|
-
|
|
1415
|
+
__wbg_get_326e41e095fb2575: function() { return handleError(function (arg0, arg1) {
|
|
1416
1416
|
const ret = Reflect.get(arg0, arg1);
|
|
1417
1417
|
return ret;
|
|
1418
1418
|
}, arguments); },
|
|
1419
|
-
|
|
1420
|
-
const ret = arg1[arg2 >>> 0];
|
|
1421
|
-
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1422
|
-
var len1 = WASM_VECTOR_LEN;
|
|
1423
|
-
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1424
|
-
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1425
|
-
},
|
|
1426
|
-
__wbg_get_4920fefd3451364b: function() { return handleError(function (arg0, arg1) {
|
|
1419
|
+
__wbg_get_3ef1eba1850ade27: function() { return handleError(function (arg0, arg1) {
|
|
1427
1420
|
const ret = Reflect.get(arg0, arg1);
|
|
1428
1421
|
return ret;
|
|
1429
1422
|
}, arguments); },
|
|
1430
|
-
|
|
1423
|
+
__wbg_get_6ac8c8119f577720: function() { return handleError(function (arg0, arg1) {
|
|
1431
1424
|
const ret = arg0.get(arg1);
|
|
1432
1425
|
return ret;
|
|
1433
1426
|
}, arguments); },
|
|
1434
|
-
|
|
1427
|
+
__wbg_get_7873e3afa59bad00: function(arg0, arg1, arg2) {
|
|
1428
|
+
const ret = arg1[arg2 >>> 0];
|
|
1429
|
+
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1430
|
+
var len1 = WASM_VECTOR_LEN;
|
|
1431
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1432
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1433
|
+
},
|
|
1434
|
+
__wbg_get_a8ee5c45dabc1b3b: function(arg0, arg1) {
|
|
1435
1435
|
const ret = arg0[arg1 >>> 0];
|
|
1436
1436
|
return ret;
|
|
1437
1437
|
},
|
|
1438
|
-
|
|
1438
|
+
__wbg_get_unchecked_329cfe50afab7352: function(arg0, arg1) {
|
|
1439
1439
|
const ret = arg0[arg1 >>> 0];
|
|
1440
1440
|
return ret;
|
|
1441
1441
|
},
|
|
@@ -1443,22 +1443,22 @@ function __wbg_get_imports() {
|
|
|
1443
1443
|
const ret = arg0[arg1];
|
|
1444
1444
|
return ret;
|
|
1445
1445
|
},
|
|
1446
|
-
|
|
1446
|
+
__wbg_has_926ef2ff40b308cf: function() { return handleError(function (arg0, arg1) {
|
|
1447
1447
|
const ret = Reflect.has(arg0, arg1);
|
|
1448
1448
|
return ret;
|
|
1449
1449
|
}, arguments); },
|
|
1450
|
-
|
|
1450
|
+
__wbg_headers_eb2234545f9ff993: function(arg0) {
|
|
1451
1451
|
const ret = arg0.headers;
|
|
1452
1452
|
return ret;
|
|
1453
1453
|
},
|
|
1454
|
-
|
|
1454
|
+
__wbg_indexNames_3a9be68017fb9405: function(arg0) {
|
|
1455
1455
|
const ret = arg0.indexNames;
|
|
1456
1456
|
return ret;
|
|
1457
1457
|
},
|
|
1458
|
-
|
|
1458
|
+
__wbg_info_0194681687b5ab04: function(arg0, arg1, arg2, arg3) {
|
|
1459
1459
|
console.info(arg0, arg1, arg2, arg3);
|
|
1460
1460
|
},
|
|
1461
|
-
|
|
1461
|
+
__wbg_instanceof_ArrayBuffer_101e2bf31071a9f6: function(arg0) {
|
|
1462
1462
|
let result;
|
|
1463
1463
|
try {
|
|
1464
1464
|
result = arg0 instanceof ArrayBuffer;
|
|
@@ -1468,7 +1468,7 @@ function __wbg_get_imports() {
|
|
|
1468
1468
|
const ret = result;
|
|
1469
1469
|
return ret;
|
|
1470
1470
|
},
|
|
1471
|
-
|
|
1471
|
+
__wbg_instanceof_Blob_c91af000f11c2d0b: function(arg0) {
|
|
1472
1472
|
let result;
|
|
1473
1473
|
try {
|
|
1474
1474
|
result = arg0 instanceof Blob;
|
|
@@ -1478,7 +1478,7 @@ function __wbg_get_imports() {
|
|
|
1478
1478
|
const ret = result;
|
|
1479
1479
|
return ret;
|
|
1480
1480
|
},
|
|
1481
|
-
|
|
1481
|
+
__wbg_instanceof_IdbFactory_efcffbfd9020e4ac: function(arg0) {
|
|
1482
1482
|
let result;
|
|
1483
1483
|
try {
|
|
1484
1484
|
result = arg0 instanceof IDBFactory;
|
|
@@ -1488,7 +1488,7 @@ function __wbg_get_imports() {
|
|
|
1488
1488
|
const ret = result;
|
|
1489
1489
|
return ret;
|
|
1490
1490
|
},
|
|
1491
|
-
|
|
1491
|
+
__wbg_instanceof_Map_f194b366846aca0c: function(arg0) {
|
|
1492
1492
|
let result;
|
|
1493
1493
|
try {
|
|
1494
1494
|
result = arg0 instanceof Map;
|
|
@@ -1498,7 +1498,7 @@ function __wbg_get_imports() {
|
|
|
1498
1498
|
const ret = result;
|
|
1499
1499
|
return ret;
|
|
1500
1500
|
},
|
|
1501
|
-
|
|
1501
|
+
__wbg_instanceof_Response_9b4d9fd451e051b1: function(arg0) {
|
|
1502
1502
|
let result;
|
|
1503
1503
|
try {
|
|
1504
1504
|
result = arg0 instanceof Response;
|
|
@@ -1508,7 +1508,7 @@ function __wbg_get_imports() {
|
|
|
1508
1508
|
const ret = result;
|
|
1509
1509
|
return ret;
|
|
1510
1510
|
},
|
|
1511
|
-
|
|
1511
|
+
__wbg_instanceof_Uint8Array_740438561a5b956d: function(arg0) {
|
|
1512
1512
|
let result;
|
|
1513
1513
|
try {
|
|
1514
1514
|
result = arg0 instanceof Uint8Array;
|
|
@@ -1518,69 +1518,81 @@ function __wbg_get_imports() {
|
|
|
1518
1518
|
const ret = result;
|
|
1519
1519
|
return ret;
|
|
1520
1520
|
},
|
|
1521
|
-
|
|
1521
|
+
__wbg_isArray_33b91feb269ff46e: function(arg0) {
|
|
1522
1522
|
const ret = Array.isArray(arg0);
|
|
1523
1523
|
return ret;
|
|
1524
1524
|
},
|
|
1525
|
-
|
|
1525
|
+
__wbg_isSafeInteger_ecd6a7f9c3e053cd: function(arg0) {
|
|
1526
1526
|
const ret = Number.isSafeInteger(arg0);
|
|
1527
1527
|
return ret;
|
|
1528
1528
|
},
|
|
1529
|
-
|
|
1529
|
+
__wbg_iterator_d8f549ec8fb061b1: function() {
|
|
1530
1530
|
const ret = Symbol.iterator;
|
|
1531
1531
|
return ret;
|
|
1532
1532
|
},
|
|
1533
|
-
|
|
1533
|
+
__wbg_key_581f2698de7f8240: function() { return handleError(function (arg0) {
|
|
1534
1534
|
const ret = arg0.key;
|
|
1535
1535
|
return ret;
|
|
1536
1536
|
}, arguments); },
|
|
1537
|
-
|
|
1537
|
+
__wbg_length_02c4f6002306a824: function(arg0) {
|
|
1538
1538
|
const ret = arg0.length;
|
|
1539
1539
|
return ret;
|
|
1540
1540
|
},
|
|
1541
|
-
|
|
1541
|
+
__wbg_length_b3416cf66a5452c8: function(arg0) {
|
|
1542
1542
|
const ret = arg0.length;
|
|
1543
1543
|
return ret;
|
|
1544
1544
|
},
|
|
1545
|
-
|
|
1545
|
+
__wbg_length_ea16607d7b61445b: function(arg0) {
|
|
1546
1546
|
const ret = arg0.length;
|
|
1547
1547
|
return ret;
|
|
1548
1548
|
},
|
|
1549
|
-
|
|
1549
|
+
__wbg_log_70972330cfc941dd: function(arg0, arg1, arg2, arg3) {
|
|
1550
1550
|
console.log(arg0, arg1, arg2, arg3);
|
|
1551
1551
|
},
|
|
1552
1552
|
__wbg_msCrypto_bd5a034af96bcba6: function(arg0) {
|
|
1553
1553
|
const ret = arg0.msCrypto;
|
|
1554
1554
|
return ret;
|
|
1555
1555
|
},
|
|
1556
|
-
|
|
1556
|
+
__wbg_new_0837727332ac86ba: function() { return handleError(function () {
|
|
1557
1557
|
const ret = new Headers();
|
|
1558
1558
|
return ret;
|
|
1559
1559
|
}, arguments); },
|
|
1560
|
-
|
|
1561
|
-
const ret = new
|
|
1560
|
+
__wbg_new_0_1dcafdf5e786e876: function() {
|
|
1561
|
+
const ret = new Date();
|
|
1562
1562
|
return ret;
|
|
1563
1563
|
},
|
|
1564
|
-
|
|
1565
|
-
const ret = new
|
|
1564
|
+
__wbg_new_227d7c05414eb861: function() {
|
|
1565
|
+
const ret = new Error();
|
|
1566
1566
|
return ret;
|
|
1567
1567
|
},
|
|
1568
|
-
|
|
1569
|
-
const ret = new
|
|
1568
|
+
__wbg_new_49d5571bd3f0c4d4: function() {
|
|
1569
|
+
const ret = new Map();
|
|
1570
1570
|
return ret;
|
|
1571
1571
|
},
|
|
1572
|
-
|
|
1573
|
-
const ret = new
|
|
1572
|
+
__wbg_new_5f486cdf45a04d78: function(arg0) {
|
|
1573
|
+
const ret = new Uint8Array(arg0);
|
|
1574
1574
|
return ret;
|
|
1575
1575
|
},
|
|
1576
|
-
|
|
1576
|
+
__wbg_new_a70fbab9066b301f: function() {
|
|
1577
|
+
const ret = new Array();
|
|
1578
|
+
return ret;
|
|
1579
|
+
},
|
|
1580
|
+
__wbg_new_ab79df5bd7c26067: function() {
|
|
1581
|
+
const ret = new Object();
|
|
1582
|
+
return ret;
|
|
1583
|
+
},
|
|
1584
|
+
__wbg_new_c518c60af666645b: function() { return handleError(function () {
|
|
1585
|
+
const ret = new AbortController();
|
|
1586
|
+
return ret;
|
|
1587
|
+
}, arguments); },
|
|
1588
|
+
__wbg_new_d098e265629cd10f: function(arg0, arg1) {
|
|
1577
1589
|
try {
|
|
1578
1590
|
var state0 = {a: arg0, b: arg1};
|
|
1579
1591
|
var cb0 = (arg0, arg1) => {
|
|
1580
1592
|
const a = state0.a;
|
|
1581
1593
|
state0.a = 0;
|
|
1582
1594
|
try {
|
|
1583
|
-
return
|
|
1595
|
+
return wasm_bindgen__convert__closures_____invoke__h0a7adf7d3880a828(a, state0.b, arg0, arg1);
|
|
1584
1596
|
} finally {
|
|
1585
1597
|
state0.a = a;
|
|
1586
1598
|
}
|
|
@@ -1591,38 +1603,26 @@ function __wbg_get_imports() {
|
|
|
1591
1603
|
state0.a = state0.b = 0;
|
|
1592
1604
|
}
|
|
1593
1605
|
},
|
|
1594
|
-
|
|
1595
|
-
const ret = new Map();
|
|
1596
|
-
return ret;
|
|
1597
|
-
},
|
|
1598
|
-
__wbg_new_cbee8c0d5c479eac: function() {
|
|
1599
|
-
const ret = new Array();
|
|
1600
|
-
return ret;
|
|
1601
|
-
},
|
|
1602
|
-
__wbg_new_ed69e637b553a997: function() {
|
|
1603
|
-
const ret = new Object();
|
|
1604
|
-
return ret;
|
|
1605
|
-
},
|
|
1606
|
-
__wbg_new_fc4d5b17b0f1a4cb: function() { return handleError(function (arg0, arg1) {
|
|
1606
|
+
__wbg_new_dd50bcc3f60ba434: function() { return handleError(function (arg0, arg1) {
|
|
1607
1607
|
const ret = new WebSocket(getStringFromWasm0(arg0, arg1));
|
|
1608
1608
|
return ret;
|
|
1609
1609
|
}, arguments); },
|
|
1610
|
-
|
|
1611
|
-
const ret = new
|
|
1610
|
+
__wbg_new_fd94ca5c9639abd2: function(arg0) {
|
|
1611
|
+
const ret = new Date(arg0);
|
|
1612
1612
|
return ret;
|
|
1613
|
-
},
|
|
1614
|
-
|
|
1613
|
+
},
|
|
1614
|
+
__wbg_new_from_slice_22da9388ac046e50: function(arg0, arg1) {
|
|
1615
1615
|
const ret = new Uint8Array(getArrayU8FromWasm0(arg0, arg1));
|
|
1616
1616
|
return ret;
|
|
1617
1617
|
},
|
|
1618
|
-
|
|
1618
|
+
__wbg_new_typed_aaaeaf29cf802876: function(arg0, arg1) {
|
|
1619
1619
|
try {
|
|
1620
1620
|
var state0 = {a: arg0, b: arg1};
|
|
1621
1621
|
var cb0 = (arg0, arg1) => {
|
|
1622
1622
|
const a = state0.a;
|
|
1623
1623
|
state0.a = 0;
|
|
1624
1624
|
try {
|
|
1625
|
-
return
|
|
1625
|
+
return wasm_bindgen__convert__closures_____invoke__h0a7adf7d3880a828(a, state0.b, arg0, arg1);
|
|
1626
1626
|
} finally {
|
|
1627
1627
|
state0.a = a;
|
|
1628
1628
|
}
|
|
@@ -1633,30 +1633,34 @@ function __wbg_get_imports() {
|
|
|
1633
1633
|
state0.a = state0.b = 0;
|
|
1634
1634
|
}
|
|
1635
1635
|
},
|
|
1636
|
-
|
|
1636
|
+
__wbg_new_typed_bccac67128ed885a: function() {
|
|
1637
1637
|
const ret = new Array();
|
|
1638
1638
|
return ret;
|
|
1639
1639
|
},
|
|
1640
|
-
|
|
1640
|
+
__wbg_new_with_length_825018a1616e9e55: function(arg0) {
|
|
1641
1641
|
const ret = new Uint8Array(arg0 >>> 0);
|
|
1642
1642
|
return ret;
|
|
1643
1643
|
},
|
|
1644
|
-
|
|
1644
|
+
__wbg_new_with_str_and_init_b4b54d1a819bc724: function() { return handleError(function (arg0, arg1, arg2) {
|
|
1645
1645
|
const ret = new Request(getStringFromWasm0(arg0, arg1), arg2);
|
|
1646
1646
|
return ret;
|
|
1647
1647
|
}, arguments); },
|
|
1648
|
-
|
|
1649
|
-
const ret = arg0.next;
|
|
1650
|
-
return ret;
|
|
1651
|
-
},
|
|
1652
|
-
__wbg_next_e592122bb4ed4c67: function() { return handleError(function (arg0) {
|
|
1648
|
+
__wbg_next_11b99ee6237339e3: function() { return handleError(function (arg0) {
|
|
1653
1649
|
const ret = arg0.next();
|
|
1654
1650
|
return ret;
|
|
1655
1651
|
}, arguments); },
|
|
1652
|
+
__wbg_next_e01a967809d1aa68: function(arg0) {
|
|
1653
|
+
const ret = arg0.next;
|
|
1654
|
+
return ret;
|
|
1655
|
+
},
|
|
1656
1656
|
__wbg_node_84ea875411254db1: function(arg0) {
|
|
1657
1657
|
const ret = arg0.node;
|
|
1658
1658
|
return ret;
|
|
1659
1659
|
},
|
|
1660
|
+
__wbg_now_16f0c993d5dd6c27: function() {
|
|
1661
|
+
const ret = Date.now();
|
|
1662
|
+
return ret;
|
|
1663
|
+
},
|
|
1660
1664
|
__wbg_now_67c2115a7c146997: function() { return handleError(function () {
|
|
1661
1665
|
const ret = Date.now();
|
|
1662
1666
|
return ret;
|
|
@@ -1665,39 +1669,35 @@ function __wbg_get_imports() {
|
|
|
1665
1669
|
const ret = arg0.now();
|
|
1666
1670
|
return ret;
|
|
1667
1671
|
},
|
|
1668
|
-
|
|
1672
|
+
__wbg_now_c6d7a7d35f74f6f1: function(arg0) {
|
|
1669
1673
|
const ret = arg0.now();
|
|
1670
1674
|
return ret;
|
|
1671
1675
|
},
|
|
1672
|
-
|
|
1673
|
-
const ret = Date.now();
|
|
1674
|
-
return ret;
|
|
1675
|
-
},
|
|
1676
|
-
__wbg_objectStoreNames_3645b6da2d1f3852: function(arg0) {
|
|
1676
|
+
__wbg_objectStoreNames_564985d2e9ae7523: function(arg0) {
|
|
1677
1677
|
const ret = arg0.objectStoreNames;
|
|
1678
1678
|
return ret;
|
|
1679
1679
|
},
|
|
1680
|
-
|
|
1680
|
+
__wbg_objectStore_f314ab152a5c7bd0: function() { return handleError(function (arg0, arg1, arg2) {
|
|
1681
1681
|
const ret = arg0.objectStore(getStringFromWasm0(arg1, arg2));
|
|
1682
1682
|
return ret;
|
|
1683
1683
|
}, arguments); },
|
|
1684
|
-
|
|
1685
|
-
const ret = arg0.openCursor(
|
|
1684
|
+
__wbg_openCursor_7f0cc3f660850dc1: function() { return handleError(function (arg0) {
|
|
1685
|
+
const ret = arg0.openCursor();
|
|
1686
1686
|
return ret;
|
|
1687
1687
|
}, arguments); },
|
|
1688
|
-
|
|
1689
|
-
const ret = arg0.openCursor(arg1);
|
|
1688
|
+
__wbg_openCursor_92dbb828857828a4: function() { return handleError(function (arg0, arg1, arg2) {
|
|
1689
|
+
const ret = arg0.openCursor(arg1, __wbindgen_enum_IdbCursorDirection[arg2]);
|
|
1690
1690
|
return ret;
|
|
1691
1691
|
}, arguments); },
|
|
1692
|
-
|
|
1693
|
-
const ret = arg0.openCursor();
|
|
1692
|
+
__wbg_openCursor_d2c404b7a149da6b: function() { return handleError(function (arg0, arg1) {
|
|
1693
|
+
const ret = arg0.openCursor(arg1);
|
|
1694
1694
|
return ret;
|
|
1695
1695
|
}, arguments); },
|
|
1696
|
-
|
|
1696
|
+
__wbg_open_e7a9d3d6344572f6: function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
1697
1697
|
const ret = arg0.open(getStringFromWasm0(arg1, arg2), arg3 >>> 0);
|
|
1698
1698
|
return ret;
|
|
1699
1699
|
}, arguments); },
|
|
1700
|
-
|
|
1700
|
+
__wbg_open_f3dc09caa3990bc4: function() { return handleError(function (arg0, arg1, arg2) {
|
|
1701
1701
|
const ret = arg0.open(getStringFromWasm0(arg1, arg2));
|
|
1702
1702
|
return ret;
|
|
1703
1703
|
}, arguments); },
|
|
@@ -1705,43 +1705,43 @@ function __wbg_get_imports() {
|
|
|
1705
1705
|
const ret = arg0.performance;
|
|
1706
1706
|
return ret;
|
|
1707
1707
|
},
|
|
1708
|
-
|
|
1708
|
+
__wbg_postMessage_564f0071531c08c3: function() { return handleError(function (arg0, arg1) {
|
|
1709
1709
|
arg0.postMessage(arg1);
|
|
1710
1710
|
}, arguments); },
|
|
1711
1711
|
__wbg_process_44c7a14e11e9f69e: function(arg0) {
|
|
1712
1712
|
const ret = arg0.process;
|
|
1713
1713
|
return ret;
|
|
1714
1714
|
},
|
|
1715
|
-
|
|
1715
|
+
__wbg_prototypesetcall_d62e5099504357e6: function(arg0, arg1, arg2) {
|
|
1716
1716
|
Uint8Array.prototype.set.call(getArrayU8FromWasm0(arg0, arg1), arg2);
|
|
1717
1717
|
},
|
|
1718
|
-
|
|
1718
|
+
__wbg_push_e87b0e732085a946: function(arg0, arg1) {
|
|
1719
1719
|
const ret = arg0.push(arg1);
|
|
1720
1720
|
return ret;
|
|
1721
1721
|
},
|
|
1722
|
-
|
|
1722
|
+
__wbg_put_ae369598c083f1f5: function() { return handleError(function (arg0, arg1) {
|
|
1723
1723
|
const ret = arg0.put(arg1);
|
|
1724
1724
|
return ret;
|
|
1725
1725
|
}, arguments); },
|
|
1726
|
-
|
|
1726
|
+
__wbg_put_f1673d719f93ce22: function() { return handleError(function (arg0, arg1, arg2) {
|
|
1727
1727
|
const ret = arg0.put(arg1, arg2);
|
|
1728
1728
|
return ret;
|
|
1729
1729
|
}, arguments); },
|
|
1730
|
-
|
|
1730
|
+
__wbg_queueMicrotask_0c399741342fb10f: function(arg0) {
|
|
1731
1731
|
const ret = arg0.queueMicrotask;
|
|
1732
1732
|
return ret;
|
|
1733
1733
|
},
|
|
1734
|
-
|
|
1734
|
+
__wbg_queueMicrotask_a082d78ce798393e: function(arg0) {
|
|
1735
1735
|
queueMicrotask(arg0);
|
|
1736
1736
|
},
|
|
1737
1737
|
__wbg_randomFillSync_6c25eac9869eb53c: function() { return handleError(function (arg0, arg1) {
|
|
1738
1738
|
arg0.randomFillSync(arg1);
|
|
1739
1739
|
}, arguments); },
|
|
1740
|
-
|
|
1740
|
+
__wbg_readyState_1f1e7f1bdf9f4d42: function(arg0) {
|
|
1741
1741
|
const ret = arg0.readyState;
|
|
1742
1742
|
return ret;
|
|
1743
1743
|
},
|
|
1744
|
-
|
|
1744
|
+
__wbg_reason_cbcb9911796c4714: function(arg0, arg1) {
|
|
1745
1745
|
const ret = arg1.reason;
|
|
1746
1746
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1747
1747
|
const len1 = WASM_VECTOR_LEN;
|
|
@@ -1752,18 +1752,18 @@ function __wbg_get_imports() {
|
|
|
1752
1752
|
const ret = module.require;
|
|
1753
1753
|
return ret;
|
|
1754
1754
|
}, arguments); },
|
|
1755
|
-
|
|
1755
|
+
__wbg_resolve_ae8d83246e5bcc12: function(arg0) {
|
|
1756
1756
|
const ret = Promise.resolve(arg0);
|
|
1757
1757
|
return ret;
|
|
1758
1758
|
},
|
|
1759
|
-
|
|
1759
|
+
__wbg_result_c5baa2d3d690a01a: function() { return handleError(function (arg0) {
|
|
1760
1760
|
const ret = arg0.result;
|
|
1761
1761
|
return ret;
|
|
1762
1762
|
}, arguments); },
|
|
1763
|
-
|
|
1763
|
+
__wbg_send_4a1dc66e8653e5ed: function() { return handleError(function (arg0, arg1, arg2) {
|
|
1764
1764
|
arg0.send(getStringFromWasm0(arg1, arg2));
|
|
1765
1765
|
}, arguments); },
|
|
1766
|
-
|
|
1766
|
+
__wbg_send_d31a693c975dea74: function() { return handleError(function (arg0, arg1, arg2) {
|
|
1767
1767
|
arg0.send(getArrayU8FromWasm0(arg1, arg2));
|
|
1768
1768
|
}, arguments); },
|
|
1769
1769
|
__wbg_setInterval_589c59a1e7427be3: function(arg0, arg1) {
|
|
@@ -1785,83 +1785,83 @@ function __wbg_get_imports() {
|
|
|
1785
1785
|
const ret = setTimeout(arg0, arg1);
|
|
1786
1786
|
return ret;
|
|
1787
1787
|
},
|
|
1788
|
-
|
|
1788
|
+
__wbg_set_282384002438957f: function(arg0, arg1, arg2) {
|
|
1789
1789
|
arg0[arg1 >>> 0] = arg2;
|
|
1790
1790
|
},
|
|
1791
1791
|
__wbg_set_6be42768c690e380: function(arg0, arg1, arg2) {
|
|
1792
1792
|
arg0[arg1] = arg2;
|
|
1793
1793
|
},
|
|
1794
|
-
|
|
1794
|
+
__wbg_set_auto_increment_ffc3cd6470763a4c: function(arg0, arg1) {
|
|
1795
1795
|
arg0.autoIncrement = arg1 !== 0;
|
|
1796
1796
|
},
|
|
1797
|
-
|
|
1797
|
+
__wbg_set_bf7251625df30a02: function(arg0, arg1, arg2) {
|
|
1798
|
+
const ret = arg0.set(arg1, arg2);
|
|
1799
|
+
return ret;
|
|
1800
|
+
},
|
|
1801
|
+
__wbg_set_binaryType_3dcf8281ec100a8f: function(arg0, arg1) {
|
|
1798
1802
|
arg0.binaryType = __wbindgen_enum_BinaryType[arg1];
|
|
1799
1803
|
},
|
|
1800
|
-
|
|
1804
|
+
__wbg_set_body_a3d856b097dfda04: function(arg0, arg1) {
|
|
1801
1805
|
arg0.body = arg1;
|
|
1802
1806
|
},
|
|
1803
|
-
|
|
1807
|
+
__wbg_set_cache_ec7e430c6056ebda: function(arg0, arg1) {
|
|
1804
1808
|
arg0.cache = __wbindgen_enum_RequestCache[arg1];
|
|
1805
1809
|
},
|
|
1806
|
-
|
|
1807
|
-
const ret = arg0.set(arg1, arg2);
|
|
1808
|
-
return ret;
|
|
1809
|
-
},
|
|
1810
|
-
__wbg_set_credentials_b80a80dfa15201af: function(arg0, arg1) {
|
|
1810
|
+
__wbg_set_credentials_ed63183445882c65: function(arg0, arg1) {
|
|
1811
1811
|
arg0.credentials = __wbindgen_enum_RequestCredentials[arg1];
|
|
1812
1812
|
},
|
|
1813
|
-
|
|
1813
|
+
__wbg_set_headers_3c8fecc693b75327: function(arg0, arg1) {
|
|
1814
1814
|
arg0.headers = arg1;
|
|
1815
1815
|
},
|
|
1816
|
-
|
|
1816
|
+
__wbg_set_key_path_3c45a8ff0b89e678: function(arg0, arg1) {
|
|
1817
1817
|
arg0.keyPath = arg1;
|
|
1818
1818
|
},
|
|
1819
|
-
|
|
1819
|
+
__wbg_set_method_8c015e8bcafd7be1: function(arg0, arg1, arg2) {
|
|
1820
1820
|
arg0.method = getStringFromWasm0(arg1, arg2);
|
|
1821
1821
|
},
|
|
1822
|
-
|
|
1822
|
+
__wbg_set_mode_5a87f2c809cf37c2: function(arg0, arg1) {
|
|
1823
1823
|
arg0.mode = __wbindgen_enum_RequestMode[arg1];
|
|
1824
1824
|
},
|
|
1825
|
-
|
|
1825
|
+
__wbg_set_multi_entry_38c253febe05d3be: function(arg0, arg1) {
|
|
1826
1826
|
arg0.multiEntry = arg1 !== 0;
|
|
1827
1827
|
},
|
|
1828
|
-
|
|
1828
|
+
__wbg_set_onabort_63885d8d7841a8d5: function(arg0, arg1) {
|
|
1829
1829
|
arg0.onabort = arg1;
|
|
1830
1830
|
},
|
|
1831
|
-
|
|
1831
|
+
__wbg_set_onclose_8da801226bdd7a7b: function(arg0, arg1) {
|
|
1832
1832
|
arg0.onclose = arg1;
|
|
1833
1833
|
},
|
|
1834
|
-
|
|
1834
|
+
__wbg_set_oncomplete_f31e6dc6d16c1ff8: function(arg0, arg1) {
|
|
1835
1835
|
arg0.oncomplete = arg1;
|
|
1836
1836
|
},
|
|
1837
|
-
|
|
1837
|
+
__wbg_set_onerror_8a268cb237177bba: function(arg0, arg1) {
|
|
1838
1838
|
arg0.onerror = arg1;
|
|
1839
1839
|
},
|
|
1840
|
-
|
|
1840
|
+
__wbg_set_onerror_901ca711f94a5bbb: function(arg0, arg1) {
|
|
1841
1841
|
arg0.onerror = arg1;
|
|
1842
1842
|
},
|
|
1843
|
-
|
|
1843
|
+
__wbg_set_onerror_c1ecd6233c533c08: function(arg0, arg1) {
|
|
1844
1844
|
arg0.onerror = arg1;
|
|
1845
1845
|
},
|
|
1846
|
-
|
|
1846
|
+
__wbg_set_onmessage_6f80ab771bf151aa: function(arg0, arg1) {
|
|
1847
1847
|
arg0.onmessage = arg1;
|
|
1848
1848
|
},
|
|
1849
|
-
|
|
1849
|
+
__wbg_set_onopen_34e3e24cf9337ddd: function(arg0, arg1) {
|
|
1850
1850
|
arg0.onopen = arg1;
|
|
1851
1851
|
},
|
|
1852
|
-
|
|
1852
|
+
__wbg_set_onsuccess_fca94ded107b64af: function(arg0, arg1) {
|
|
1853
1853
|
arg0.onsuccess = arg1;
|
|
1854
1854
|
},
|
|
1855
|
-
|
|
1855
|
+
__wbg_set_onupgradeneeded_860ce42184f987e7: function(arg0, arg1) {
|
|
1856
1856
|
arg0.onupgradeneeded = arg1;
|
|
1857
1857
|
},
|
|
1858
|
-
|
|
1858
|
+
__wbg_set_signal_0cebecb698f25d21: function(arg0, arg1) {
|
|
1859
1859
|
arg0.signal = arg1;
|
|
1860
1860
|
},
|
|
1861
|
-
|
|
1861
|
+
__wbg_set_unique_a39d85db47f8e025: function(arg0, arg1) {
|
|
1862
1862
|
arg0.unique = arg1 !== 0;
|
|
1863
1863
|
},
|
|
1864
|
-
|
|
1864
|
+
__wbg_signal_166e1da31adcac18: function(arg0) {
|
|
1865
1865
|
const ret = arg0.signal;
|
|
1866
1866
|
return ret;
|
|
1867
1867
|
},
|
|
@@ -1872,77 +1872,77 @@ function __wbg_get_imports() {
|
|
|
1872
1872
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1873
1873
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1874
1874
|
},
|
|
1875
|
-
|
|
1876
|
-
const ret = typeof
|
|
1875
|
+
__wbg_static_accessor_GLOBAL_8adb955bd33fac2f: function() {
|
|
1876
|
+
const ret = typeof global === 'undefined' ? null : global;
|
|
1877
1877
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1878
1878
|
},
|
|
1879
|
-
|
|
1880
|
-
const ret = typeof
|
|
1879
|
+
__wbg_static_accessor_GLOBAL_THIS_ad356e0db91c7913: function() {
|
|
1880
|
+
const ret = typeof globalThis === 'undefined' ? null : globalThis;
|
|
1881
1881
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1882
1882
|
},
|
|
1883
|
-
|
|
1883
|
+
__wbg_static_accessor_SELF_f207c857566db248: function() {
|
|
1884
1884
|
const ret = typeof self === 'undefined' ? null : self;
|
|
1885
1885
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1886
1886
|
},
|
|
1887
|
-
|
|
1887
|
+
__wbg_static_accessor_WINDOW_bb9f1ba69d61b386: function() {
|
|
1888
1888
|
const ret = typeof window === 'undefined' ? null : window;
|
|
1889
1889
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1890
1890
|
},
|
|
1891
|
-
|
|
1891
|
+
__wbg_status_318629ab93a22955: function(arg0) {
|
|
1892
1892
|
const ret = arg0.status;
|
|
1893
1893
|
return ret;
|
|
1894
1894
|
},
|
|
1895
|
-
|
|
1895
|
+
__wbg_stringify_5ae93966a84901ac: function() { return handleError(function (arg0) {
|
|
1896
1896
|
const ret = JSON.stringify(arg0);
|
|
1897
1897
|
return ret;
|
|
1898
1898
|
}, arguments); },
|
|
1899
|
-
|
|
1899
|
+
__wbg_subarray_a068d24e39478a8a: function(arg0, arg1, arg2) {
|
|
1900
1900
|
const ret = arg0.subarray(arg1 >>> 0, arg2 >>> 0);
|
|
1901
1901
|
return ret;
|
|
1902
1902
|
},
|
|
1903
|
-
|
|
1903
|
+
__wbg_target_7bc90f314634b37b: function(arg0) {
|
|
1904
1904
|
const ret = arg0.target;
|
|
1905
1905
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1906
1906
|
},
|
|
1907
|
-
|
|
1908
|
-
const ret = arg0.then(arg1
|
|
1907
|
+
__wbg_then_098abe61755d12f6: function(arg0, arg1) {
|
|
1908
|
+
const ret = arg0.then(arg1);
|
|
1909
1909
|
return ret;
|
|
1910
1910
|
},
|
|
1911
|
-
|
|
1912
|
-
const ret = arg0.then(arg1);
|
|
1911
|
+
__wbg_then_9e335f6dd892bc11: function(arg0, arg1, arg2) {
|
|
1912
|
+
const ret = arg0.then(arg1, arg2);
|
|
1913
1913
|
return ret;
|
|
1914
1914
|
},
|
|
1915
|
-
|
|
1915
|
+
__wbg_toString_fca8b5e46235cfb4: function(arg0) {
|
|
1916
1916
|
const ret = arg0.toString();
|
|
1917
1917
|
return ret;
|
|
1918
1918
|
},
|
|
1919
|
-
|
|
1919
|
+
__wbg_transaction_3223f7c8d0f40129: function() { return handleError(function (arg0, arg1, arg2) {
|
|
1920
1920
|
const ret = arg0.transaction(arg1, __wbindgen_enum_IdbTransactionMode[arg2]);
|
|
1921
1921
|
return ret;
|
|
1922
1922
|
}, arguments); },
|
|
1923
|
-
|
|
1923
|
+
__wbg_transaction_fda57653957fee06: function(arg0) {
|
|
1924
1924
|
const ret = arg0.transaction;
|
|
1925
1925
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1926
1926
|
},
|
|
1927
|
-
|
|
1927
|
+
__wbg_url_778f9516ea867e17: function(arg0, arg1) {
|
|
1928
1928
|
const ret = arg1.url;
|
|
1929
1929
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1930
1930
|
const len1 = WASM_VECTOR_LEN;
|
|
1931
1931
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1932
1932
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1933
1933
|
},
|
|
1934
|
-
|
|
1934
|
+
__wbg_url_7fefc1820fba4e0c: function(arg0, arg1) {
|
|
1935
1935
|
const ret = arg1.url;
|
|
1936
1936
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1937
1937
|
const len1 = WASM_VECTOR_LEN;
|
|
1938
1938
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1939
1939
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1940
1940
|
},
|
|
1941
|
-
|
|
1941
|
+
__wbg_value_21fc78aab0322612: function(arg0) {
|
|
1942
1942
|
const ret = arg0.value;
|
|
1943
1943
|
return ret;
|
|
1944
1944
|
},
|
|
1945
|
-
|
|
1945
|
+
__wbg_value_79629bd10d556879: function() { return handleError(function (arg0) {
|
|
1946
1946
|
const ret = arg0.value;
|
|
1947
1947
|
return ret;
|
|
1948
1948
|
}, arguments); },
|
|
@@ -1950,46 +1950,46 @@ function __wbg_get_imports() {
|
|
|
1950
1950
|
const ret = arg0.versions;
|
|
1951
1951
|
return ret;
|
|
1952
1952
|
},
|
|
1953
|
-
|
|
1953
|
+
__wbg_warn_809cad1bfc2b3a42: function(arg0, arg1, arg2, arg3) {
|
|
1954
1954
|
console.warn(arg0, arg1, arg2, arg3);
|
|
1955
1955
|
},
|
|
1956
|
-
|
|
1956
|
+
__wbg_wasClean_69f68dc4ed2d2cc7: function(arg0) {
|
|
1957
1957
|
const ret = arg0.wasClean;
|
|
1958
1958
|
return ret;
|
|
1959
1959
|
},
|
|
1960
1960
|
__wbindgen_cast_0000000000000001: function(arg0, arg1) {
|
|
1961
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
1962
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
1961
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 61, function: Function { arguments: [Externref], shim_idx: 666, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
|
|
1962
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h2b64577c0d30e7ff, wasm_bindgen__convert__closures_____invoke__h6aec09e193342f93);
|
|
1963
1963
|
return ret;
|
|
1964
1964
|
},
|
|
1965
1965
|
__wbindgen_cast_0000000000000002: function(arg0, arg1) {
|
|
1966
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
1967
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
1966
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 61, function: Function { arguments: [NamedExternref("CloseEvent")], shim_idx: 322, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
1967
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h2b64577c0d30e7ff, wasm_bindgen__convert__closures_____invoke__h60259d0a007c8ff6);
|
|
1968
1968
|
return ret;
|
|
1969
1969
|
},
|
|
1970
1970
|
__wbindgen_cast_0000000000000003: function(arg0, arg1) {
|
|
1971
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
1972
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
1971
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 61, function: Function { arguments: [NamedExternref("MessageEvent")], shim_idx: 322, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
1972
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h2b64577c0d30e7ff, wasm_bindgen__convert__closures_____invoke__h60259d0a007c8ff6_2);
|
|
1973
1973
|
return ret;
|
|
1974
1974
|
},
|
|
1975
1975
|
__wbindgen_cast_0000000000000004: function(arg0, arg1) {
|
|
1976
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
1977
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
1976
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 61, function: Function { arguments: [], shim_idx: 325, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
1977
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h2b64577c0d30e7ff, wasm_bindgen__convert__closures_____invoke__h3af009eb2e384dae);
|
|
1978
1978
|
return ret;
|
|
1979
1979
|
},
|
|
1980
1980
|
__wbindgen_cast_0000000000000005: function(arg0, arg1) {
|
|
1981
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
1982
|
-
const ret =
|
|
1981
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 61, function: Function { arguments: [], shim_idx: 62, ret: Unit, inner_ret: Some(Unit) }, mutable: false }) -> Externref`.
|
|
1982
|
+
const ret = makeClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h2b64577c0d30e7ff, wasm_bindgen__convert__closures_____invoke__hf807c24f46a17e5e);
|
|
1983
1983
|
return ret;
|
|
1984
1984
|
},
|
|
1985
1985
|
__wbindgen_cast_0000000000000006: function(arg0, arg1) {
|
|
1986
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
1987
|
-
const ret =
|
|
1986
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 887, function: Function { arguments: [], shim_idx: 325, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
1987
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h56f6a1c416286713, wasm_bindgen__convert__closures_____invoke__h3af009eb2e384dae);
|
|
1988
1988
|
return ret;
|
|
1989
1989
|
},
|
|
1990
1990
|
__wbindgen_cast_0000000000000007: function(arg0, arg1) {
|
|
1991
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
1992
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
1991
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 892, function: Function { arguments: [NamedExternref("Event")], shim_idx: 893, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
|
|
1992
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h2681b741ef6c8dcf, wasm_bindgen__convert__closures_____invoke__h5f1e16860b61a77a);
|
|
1993
1993
|
return ret;
|
|
1994
1994
|
},
|
|
1995
1995
|
__wbindgen_cast_0000000000000008: function(arg0) {
|
|
@@ -2033,38 +2033,38 @@ function __wbg_get_imports() {
|
|
|
2033
2033
|
};
|
|
2034
2034
|
}
|
|
2035
2035
|
|
|
2036
|
-
function
|
|
2037
|
-
wasm.
|
|
2036
|
+
function wasm_bindgen__convert__closures_____invoke__h3af009eb2e384dae(arg0, arg1) {
|
|
2037
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h3af009eb2e384dae(arg0, arg1);
|
|
2038
2038
|
}
|
|
2039
2039
|
|
|
2040
|
-
function
|
|
2041
|
-
wasm.
|
|
2040
|
+
function wasm_bindgen__convert__closures_____invoke__hf807c24f46a17e5e(arg0, arg1) {
|
|
2041
|
+
wasm.wasm_bindgen__convert__closures_____invoke__hf807c24f46a17e5e(arg0, arg1);
|
|
2042
2042
|
}
|
|
2043
2043
|
|
|
2044
|
-
function
|
|
2045
|
-
wasm.
|
|
2044
|
+
function wasm_bindgen__convert__closures_____invoke__h60259d0a007c8ff6(arg0, arg1, arg2) {
|
|
2045
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h60259d0a007c8ff6(arg0, arg1, arg2);
|
|
2046
2046
|
}
|
|
2047
2047
|
|
|
2048
|
-
function
|
|
2049
|
-
wasm.
|
|
2048
|
+
function wasm_bindgen__convert__closures_____invoke__h60259d0a007c8ff6_2(arg0, arg1, arg2) {
|
|
2049
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h60259d0a007c8ff6_2(arg0, arg1, arg2);
|
|
2050
2050
|
}
|
|
2051
2051
|
|
|
2052
|
-
function
|
|
2053
|
-
const ret = wasm.
|
|
2052
|
+
function wasm_bindgen__convert__closures_____invoke__h6aec09e193342f93(arg0, arg1, arg2) {
|
|
2053
|
+
const ret = wasm.wasm_bindgen__convert__closures_____invoke__h6aec09e193342f93(arg0, arg1, arg2);
|
|
2054
2054
|
if (ret[1]) {
|
|
2055
2055
|
throw takeFromExternrefTable0(ret[0]);
|
|
2056
2056
|
}
|
|
2057
2057
|
}
|
|
2058
2058
|
|
|
2059
|
-
function
|
|
2060
|
-
const ret = wasm.
|
|
2059
|
+
function wasm_bindgen__convert__closures_____invoke__h5f1e16860b61a77a(arg0, arg1, arg2) {
|
|
2060
|
+
const ret = wasm.wasm_bindgen__convert__closures_____invoke__h5f1e16860b61a77a(arg0, arg1, arg2);
|
|
2061
2061
|
if (ret[1]) {
|
|
2062
2062
|
throw takeFromExternrefTable0(ret[0]);
|
|
2063
2063
|
}
|
|
2064
2064
|
}
|
|
2065
2065
|
|
|
2066
|
-
function
|
|
2067
|
-
wasm.
|
|
2066
|
+
function wasm_bindgen__convert__closures_____invoke__h0a7adf7d3880a828(arg0, arg1, arg2, arg3) {
|
|
2067
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h0a7adf7d3880a828(arg0, arg1, arg2, arg3);
|
|
2068
2068
|
}
|
|
2069
2069
|
|
|
2070
2070
|
|
package/index_bg.wasm
CHANGED
|
Binary file
|