bitmask-core 1.0.7-beta.17 → 1.0.7-beta.18
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/bitmask_core.d.ts +111 -111
- package/bitmask_core.js +666 -666
- package/bitmask_core_bg.wasm +0 -0
- package/bitmask_core_bg.wasm.d.ts +58 -58
- package/package.json +1 -1
package/bitmask_core.d.ts
CHANGED
|
@@ -1,58 +1,5 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
|
-
export function convert_contract_amount_raw(decimal: string, precision: number): string;
|
|
4
|
-
export function convert_contract_amount_string(amount: bigint, precision: number): string;
|
|
5
|
-
export function parse_contract_amount(amount: string): any;
|
|
6
|
-
export function parse_contract_amount_precision(amount: string, precision: number): string;
|
|
7
|
-
export function version(): any;
|
|
8
|
-
export function store(secret_key: string, name: string, data: Uint8Array, force: boolean, metadata?: Uint8Array | null): Promise<any>;
|
|
9
|
-
export function retrieve(secret_key: string, name: string): Promise<any>;
|
|
10
|
-
export function retrieve_metadata(secret_key: string, name: string): Promise<any>;
|
|
11
|
-
export function encode_hex(bytes: Uint8Array): string;
|
|
12
|
-
export function encode_base64(bytes: Uint8Array): string;
|
|
13
|
-
export function decode_hex(string: string): Uint8Array;
|
|
14
|
-
export function decode_base64(string: string): Uint8Array;
|
|
15
|
-
export function create_wallet(username: string, password: string): Promise<any>;
|
|
16
|
-
export function auth(username: string, password: string): Promise<any>;
|
|
17
|
-
export function ln_create_invoice(description: string, amount: number, token: string): Promise<any>;
|
|
18
|
-
export function get_balance(token: string): Promise<any>;
|
|
19
|
-
export function get_txs(token: string): Promise<any>;
|
|
20
|
-
export function pay_invoice(payment_request: string, token: string): Promise<any>;
|
|
21
|
-
export function check_payment(payment_hash: string): Promise<any>;
|
|
22
|
-
export function swap_btc_ln(token: string, ln_address?: string | null): Promise<any>;
|
|
23
|
-
export function swap_ln_btc(address: string, amount: bigint, token: string): Promise<any>;
|
|
24
|
-
export function create_watcher(nostr_hex_sk: string, request: any): Promise<any>;
|
|
25
|
-
export function recover_watcher(nostr_hex_sk: string, request: any): Promise<any>;
|
|
26
|
-
export function destroy_watcher(nostr_hex_sk: string): Promise<any>;
|
|
27
|
-
export function destroy_recover_watcher(nostr_hex_sk: string): Promise<any>;
|
|
28
|
-
export function check_watcher(nostr_hex_sk: string): Promise<any>;
|
|
29
|
-
export function watcher_next_address(nostr_hex_sk: string, request: string): Promise<any>;
|
|
30
|
-
export function watcher_next_utxo(nostr_hex_sk: string, request: string): Promise<any>;
|
|
31
|
-
export function watcher_unspent_utxos(nostr_hex_sk: string, request: string): Promise<any>;
|
|
32
|
-
export function new_nostr_pubkey(pubkey: string, token: string): Promise<any>;
|
|
33
|
-
export function update_nostr_pubkey(pubkey: string, token: string): Promise<any>;
|
|
34
|
-
export function get_network(): Promise<any>;
|
|
35
|
-
export function switch_network(network_str: string): Promise<any>;
|
|
36
|
-
export function get_env(key: string): Promise<any>;
|
|
37
|
-
export function set_env(key: string, value: string): Promise<any>;
|
|
38
|
-
export function sleep(ms: number): Promise<any>;
|
|
39
|
-
export function hash_password(password: string): string;
|
|
40
|
-
export function new_mnemonic(password: string): Promise<any>;
|
|
41
|
-
export function save_mnemonic(seed: string, password: string): Promise<any>;
|
|
42
|
-
export function decrypt_wallet(hash: string, encrypted_descriptors: string, seed_password: string): Promise<any>;
|
|
43
|
-
export function upgrade_wallet(hash: string, encrypted_descriptors: string, seed_password: string): Promise<any>;
|
|
44
|
-
export function new_wallet(hash: string, seed_password: string): Promise<any>;
|
|
45
|
-
export function encrypt_wallet(mnemonic: string, hash: string, seed_password: string): Promise<any>;
|
|
46
|
-
export function get_wallet_data(descriptor: string, change_descriptor?: string | null): Promise<any>;
|
|
47
|
-
export function sync_wallets(): Promise<any>;
|
|
48
|
-
export function get_new_address(descriptor: string, change_descriptor?: string | null): Promise<any>;
|
|
49
|
-
export function send_sats(descriptor: string, change_descriptor: string, destination: string, amount: bigint, broadcast: boolean, fee_rate?: number | null): Promise<any>;
|
|
50
|
-
export function fund_vault(descriptor: string, change_descriptor: string, rgb_address: string, broadcast: boolean, fee_rate?: number | null): Promise<any>;
|
|
51
|
-
export function get_assets_vault(rgb_descriptor_xpub: string): Promise<any>;
|
|
52
|
-
export function drain_wallet(destination: string, descriptor: string, change_descriptor?: string | null, fee_rate?: number | null): Promise<any>;
|
|
53
|
-
export function bump_fee(txid: string, fee_rate: number, descriptor: string, change_descriptor: string | null | undefined, broadcast: boolean): Promise<any>;
|
|
54
|
-
export function psbt_sign_and_publish_file(request: any): Promise<any>;
|
|
55
|
-
export function psbt_publish_file(request: any): Promise<any>;
|
|
56
3
|
export function get_rgb_version(): string;
|
|
57
4
|
export function get_rgb_wallet(nostr_hex_sk: string): Promise<any>;
|
|
58
5
|
export function get_btc_wallet_data(nostr_hex_sk: string): Promise<any>;
|
|
@@ -95,70 +42,70 @@ export function create_airdrop_claim(nostr_hex_sk: string, request: any): Promis
|
|
|
95
42
|
export function close_airdrop(nostr_hex_sk: string, request: any): Promise<any>;
|
|
96
43
|
export function backup_rgb_data(nostr_hex_sk: string): Promise<any>;
|
|
97
44
|
export function restore_rgb_data(nostr_hex_sk: string): Promise<any>;
|
|
45
|
+
export function store(secret_key: string, name: string, data: Uint8Array, force: boolean, metadata?: Uint8Array | null): Promise<any>;
|
|
46
|
+
export function retrieve(secret_key: string, name: string): Promise<any>;
|
|
47
|
+
export function retrieve_metadata(secret_key: string, name: string): Promise<any>;
|
|
48
|
+
export function encode_hex(bytes: Uint8Array): string;
|
|
49
|
+
export function encode_base64(bytes: Uint8Array): string;
|
|
50
|
+
export function decode_hex(string: string): Uint8Array;
|
|
51
|
+
export function decode_base64(string: string): Uint8Array;
|
|
52
|
+
export function create_wallet(username: string, password: string): Promise<any>;
|
|
53
|
+
export function auth(username: string, password: string): Promise<any>;
|
|
54
|
+
export function ln_create_invoice(description: string, amount: number, token: string): Promise<any>;
|
|
55
|
+
export function get_balance(token: string): Promise<any>;
|
|
56
|
+
export function get_txs(token: string): Promise<any>;
|
|
57
|
+
export function pay_invoice(payment_request: string, token: string): Promise<any>;
|
|
58
|
+
export function check_payment(payment_hash: string): Promise<any>;
|
|
59
|
+
export function swap_btc_ln(token: string, ln_address?: string | null): Promise<any>;
|
|
60
|
+
export function swap_ln_btc(address: string, amount: bigint, token: string): Promise<any>;
|
|
61
|
+
export function get_network(): Promise<any>;
|
|
62
|
+
export function switch_network(network_str: string): Promise<any>;
|
|
63
|
+
export function get_env(key: string): Promise<any>;
|
|
64
|
+
export function set_env(key: string, value: string): Promise<any>;
|
|
65
|
+
export function sleep(ms: number): Promise<any>;
|
|
98
66
|
export function fund_rgb_vault(sk: string, fee_rate: number, secrets: any, broadcast: boolean, fund_value: bigint | null | undefined, coordinator_fee: boolean): Promise<any>;
|
|
99
67
|
export function transfer_sats(sk: string, address: string, sats: bigint, fee_rate: number, secrets: any): Promise<any>;
|
|
100
68
|
export function get_btc_wallet(sk: string): Promise<any>;
|
|
101
69
|
export function backup_btc_data(nostr_hex_sk: string): Promise<any>;
|
|
102
70
|
export function recover_funds_from_bad_wallets(seed: string, pass_phrase: string, recover_address: string): Promise<any>;
|
|
103
71
|
export function restore_btc_data(nostr_hex_sk: string): Promise<any>;
|
|
72
|
+
export function convert_contract_amount_raw(decimal: string, precision: number): string;
|
|
73
|
+
export function convert_contract_amount_string(amount: bigint, precision: number): string;
|
|
74
|
+
export function parse_contract_amount(amount: string): any;
|
|
75
|
+
export function parse_contract_amount_precision(amount: string, precision: number): string;
|
|
76
|
+
export function version(): any;
|
|
77
|
+
export function hash_password(password: string): string;
|
|
78
|
+
export function new_mnemonic(password: string): Promise<any>;
|
|
79
|
+
export function save_mnemonic(seed: string, password: string): Promise<any>;
|
|
80
|
+
export function decrypt_wallet(hash: string, encrypted_descriptors: string, seed_password: string): Promise<any>;
|
|
81
|
+
export function upgrade_wallet(hash: string, encrypted_descriptors: string, seed_password: string): Promise<any>;
|
|
82
|
+
export function new_wallet(hash: string, seed_password: string): Promise<any>;
|
|
83
|
+
export function encrypt_wallet(mnemonic: string, hash: string, seed_password: string): Promise<any>;
|
|
84
|
+
export function get_wallet_data(descriptor: string, change_descriptor?: string | null): Promise<any>;
|
|
85
|
+
export function sync_wallets(): Promise<any>;
|
|
86
|
+
export function get_new_address(descriptor: string, change_descriptor?: string | null): Promise<any>;
|
|
87
|
+
export function send_sats(descriptor: string, change_descriptor: string, destination: string, amount: bigint, broadcast: boolean, fee_rate?: number | null): Promise<any>;
|
|
88
|
+
export function fund_vault(descriptor: string, change_descriptor: string, rgb_address: string, broadcast: boolean, fee_rate?: number | null): Promise<any>;
|
|
89
|
+
export function get_assets_vault(rgb_descriptor_xpub: string): Promise<any>;
|
|
90
|
+
export function drain_wallet(destination: string, descriptor: string, change_descriptor?: string | null, fee_rate?: number | null): Promise<any>;
|
|
91
|
+
export function bump_fee(txid: string, fee_rate: number, descriptor: string, change_descriptor: string | null | undefined, broadcast: boolean): Promise<any>;
|
|
92
|
+
export function psbt_sign_and_publish_file(request: any): Promise<any>;
|
|
93
|
+
export function psbt_publish_file(request: any): Promise<any>;
|
|
94
|
+
export function create_watcher(nostr_hex_sk: string, request: any): Promise<any>;
|
|
95
|
+
export function recover_watcher(nostr_hex_sk: string, request: any): Promise<any>;
|
|
96
|
+
export function destroy_watcher(nostr_hex_sk: string): Promise<any>;
|
|
97
|
+
export function destroy_recover_watcher(nostr_hex_sk: string): Promise<any>;
|
|
98
|
+
export function check_watcher(nostr_hex_sk: string): Promise<any>;
|
|
99
|
+
export function watcher_next_address(nostr_hex_sk: string, request: string): Promise<any>;
|
|
100
|
+
export function watcher_next_utxo(nostr_hex_sk: string, request: string): Promise<any>;
|
|
101
|
+
export function watcher_unspent_utxos(nostr_hex_sk: string, request: string): Promise<any>;
|
|
102
|
+
export function new_nostr_pubkey(pubkey: string, token: string): Promise<any>;
|
|
103
|
+
export function update_nostr_pubkey(pubkey: string, token: string): Promise<any>;
|
|
104
104
|
|
|
105
105
|
export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembly.Module;
|
|
106
106
|
|
|
107
107
|
export interface InitOutput {
|
|
108
108
|
readonly memory: WebAssembly.Memory;
|
|
109
|
-
readonly convert_contract_amount_raw: (a: number, b: number, c: number) => [number, number];
|
|
110
|
-
readonly convert_contract_amount_string: (a: bigint, b: number) => [number, number];
|
|
111
|
-
readonly parse_contract_amount: (a: number, b: number) => any;
|
|
112
|
-
readonly parse_contract_amount_precision: (a: number, b: number, c: number) => [number, number];
|
|
113
|
-
readonly version: () => any;
|
|
114
|
-
readonly store: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number) => any;
|
|
115
|
-
readonly retrieve: (a: number, b: number, c: number, d: number) => any;
|
|
116
|
-
readonly retrieve_metadata: (a: number, b: number, c: number, d: number) => any;
|
|
117
|
-
readonly encode_hex: (a: number, b: number) => [number, number];
|
|
118
|
-
readonly encode_base64: (a: number, b: number) => [number, number];
|
|
119
|
-
readonly decode_hex: (a: number, b: number) => [number, number, number, number];
|
|
120
|
-
readonly decode_base64: (a: number, b: number) => [number, number, number, number];
|
|
121
|
-
readonly create_wallet: (a: number, b: number, c: number, d: number) => any;
|
|
122
|
-
readonly auth: (a: number, b: number, c: number, d: number) => any;
|
|
123
|
-
readonly ln_create_invoice: (a: number, b: number, c: number, d: number, e: number) => any;
|
|
124
|
-
readonly get_balance: (a: number, b: number) => any;
|
|
125
|
-
readonly get_txs: (a: number, b: number) => any;
|
|
126
|
-
readonly pay_invoice: (a: number, b: number, c: number, d: number) => any;
|
|
127
|
-
readonly check_payment: (a: number, b: number) => any;
|
|
128
|
-
readonly swap_btc_ln: (a: number, b: number, c: number, d: number) => any;
|
|
129
|
-
readonly swap_ln_btc: (a: number, b: number, c: bigint, d: number, e: number) => any;
|
|
130
|
-
readonly create_watcher: (a: number, b: number, c: any) => any;
|
|
131
|
-
readonly recover_watcher: (a: number, b: number, c: any) => any;
|
|
132
|
-
readonly destroy_watcher: (a: number, b: number) => any;
|
|
133
|
-
readonly destroy_recover_watcher: (a: number, b: number) => any;
|
|
134
|
-
readonly check_watcher: (a: number, b: number) => any;
|
|
135
|
-
readonly watcher_next_address: (a: number, b: number, c: number, d: number) => any;
|
|
136
|
-
readonly watcher_next_utxo: (a: number, b: number, c: number, d: number) => any;
|
|
137
|
-
readonly watcher_unspent_utxos: (a: number, b: number, c: number, d: number) => any;
|
|
138
|
-
readonly new_nostr_pubkey: (a: number, b: number, c: number, d: number) => any;
|
|
139
|
-
readonly update_nostr_pubkey: (a: number, b: number, c: number, d: number) => any;
|
|
140
|
-
readonly get_network: () => any;
|
|
141
|
-
readonly switch_network: (a: number, b: number) => any;
|
|
142
|
-
readonly get_env: (a: number, b: number) => any;
|
|
143
|
-
readonly set_env: (a: number, b: number, c: number, d: number) => any;
|
|
144
|
-
readonly sleep: (a: number) => any;
|
|
145
|
-
readonly hash_password: (a: number, b: number) => [number, number];
|
|
146
|
-
readonly new_mnemonic: (a: number, b: number) => any;
|
|
147
|
-
readonly save_mnemonic: (a: number, b: number, c: number, d: number) => any;
|
|
148
|
-
readonly decrypt_wallet: (a: number, b: number, c: number, d: number, e: number, f: number) => any;
|
|
149
|
-
readonly upgrade_wallet: (a: number, b: number, c: number, d: number, e: number, f: number) => any;
|
|
150
|
-
readonly new_wallet: (a: number, b: number, c: number, d: number) => any;
|
|
151
|
-
readonly encrypt_wallet: (a: number, b: number, c: number, d: number, e: number, f: number) => any;
|
|
152
|
-
readonly get_wallet_data: (a: number, b: number, c: number, d: number) => any;
|
|
153
|
-
readonly sync_wallets: () => any;
|
|
154
|
-
readonly get_new_address: (a: number, b: number, c: number, d: number) => any;
|
|
155
|
-
readonly send_sats: (a: number, b: number, c: number, d: number, e: number, f: number, g: bigint, h: number, i: number) => any;
|
|
156
|
-
readonly fund_vault: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => any;
|
|
157
|
-
readonly get_assets_vault: (a: number, b: number) => any;
|
|
158
|
-
readonly drain_wallet: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => any;
|
|
159
|
-
readonly bump_fee: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => any;
|
|
160
|
-
readonly psbt_sign_and_publish_file: (a: any) => any;
|
|
161
|
-
readonly psbt_publish_file: (a: any) => any;
|
|
162
109
|
readonly get_rgb_version: () => [number, number];
|
|
163
110
|
readonly get_rgb_wallet: (a: number, b: number) => any;
|
|
164
111
|
readonly get_btc_wallet_data: (a: number, b: number) => any;
|
|
@@ -197,12 +144,65 @@ export interface InitOutput {
|
|
|
197
144
|
readonly close_airdrop: (a: number, b: number, c: any) => any;
|
|
198
145
|
readonly backup_rgb_data: (a: number, b: number) => any;
|
|
199
146
|
readonly restore_rgb_data: (a: number, b: number) => any;
|
|
147
|
+
readonly store: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number) => any;
|
|
148
|
+
readonly retrieve: (a: number, b: number, c: number, d: number) => any;
|
|
149
|
+
readonly retrieve_metadata: (a: number, b: number, c: number, d: number) => any;
|
|
150
|
+
readonly encode_hex: (a: number, b: number) => [number, number];
|
|
151
|
+
readonly encode_base64: (a: number, b: number) => [number, number];
|
|
152
|
+
readonly decode_hex: (a: number, b: number) => [number, number, number, number];
|
|
153
|
+
readonly decode_base64: (a: number, b: number) => [number, number, number, number];
|
|
154
|
+
readonly create_wallet: (a: number, b: number, c: number, d: number) => any;
|
|
155
|
+
readonly auth: (a: number, b: number, c: number, d: number) => any;
|
|
156
|
+
readonly ln_create_invoice: (a: number, b: number, c: number, d: number, e: number) => any;
|
|
157
|
+
readonly get_balance: (a: number, b: number) => any;
|
|
158
|
+
readonly get_txs: (a: number, b: number) => any;
|
|
159
|
+
readonly pay_invoice: (a: number, b: number, c: number, d: number) => any;
|
|
160
|
+
readonly check_payment: (a: number, b: number) => any;
|
|
161
|
+
readonly swap_btc_ln: (a: number, b: number, c: number, d: number) => any;
|
|
162
|
+
readonly swap_ln_btc: (a: number, b: number, c: bigint, d: number, e: number) => any;
|
|
163
|
+
readonly get_network: () => any;
|
|
164
|
+
readonly switch_network: (a: number, b: number) => any;
|
|
165
|
+
readonly get_env: (a: number, b: number) => any;
|
|
166
|
+
readonly set_env: (a: number, b: number, c: number, d: number) => any;
|
|
167
|
+
readonly sleep: (a: number) => any;
|
|
200
168
|
readonly fund_rgb_vault: (a: number, b: number, c: number, d: any, e: number, f: number, g: bigint, h: number) => any;
|
|
201
169
|
readonly transfer_sats: (a: number, b: number, c: number, d: number, e: bigint, f: number, g: any) => any;
|
|
202
170
|
readonly get_btc_wallet: (a: number, b: number) => any;
|
|
203
171
|
readonly backup_btc_data: (a: number, b: number) => any;
|
|
204
172
|
readonly recover_funds_from_bad_wallets: (a: number, b: number, c: number, d: number, e: number, f: number) => any;
|
|
205
173
|
readonly restore_btc_data: (a: number, b: number) => any;
|
|
174
|
+
readonly convert_contract_amount_raw: (a: number, b: number, c: number) => [number, number];
|
|
175
|
+
readonly convert_contract_amount_string: (a: bigint, b: number) => [number, number];
|
|
176
|
+
readonly parse_contract_amount: (a: number, b: number) => any;
|
|
177
|
+
readonly parse_contract_amount_precision: (a: number, b: number, c: number) => [number, number];
|
|
178
|
+
readonly version: () => any;
|
|
179
|
+
readonly hash_password: (a: number, b: number) => [number, number];
|
|
180
|
+
readonly new_mnemonic: (a: number, b: number) => any;
|
|
181
|
+
readonly save_mnemonic: (a: number, b: number, c: number, d: number) => any;
|
|
182
|
+
readonly decrypt_wallet: (a: number, b: number, c: number, d: number, e: number, f: number) => any;
|
|
183
|
+
readonly upgrade_wallet: (a: number, b: number, c: number, d: number, e: number, f: number) => any;
|
|
184
|
+
readonly new_wallet: (a: number, b: number, c: number, d: number) => any;
|
|
185
|
+
readonly encrypt_wallet: (a: number, b: number, c: number, d: number, e: number, f: number) => any;
|
|
186
|
+
readonly get_wallet_data: (a: number, b: number, c: number, d: number) => any;
|
|
187
|
+
readonly sync_wallets: () => any;
|
|
188
|
+
readonly get_new_address: (a: number, b: number, c: number, d: number) => any;
|
|
189
|
+
readonly send_sats: (a: number, b: number, c: number, d: number, e: number, f: number, g: bigint, h: number, i: number) => any;
|
|
190
|
+
readonly fund_vault: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => any;
|
|
191
|
+
readonly get_assets_vault: (a: number, b: number) => any;
|
|
192
|
+
readonly drain_wallet: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => any;
|
|
193
|
+
readonly bump_fee: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => any;
|
|
194
|
+
readonly psbt_sign_and_publish_file: (a: any) => any;
|
|
195
|
+
readonly psbt_publish_file: (a: any) => any;
|
|
196
|
+
readonly create_watcher: (a: number, b: number, c: any) => any;
|
|
197
|
+
readonly recover_watcher: (a: number, b: number, c: any) => any;
|
|
198
|
+
readonly destroy_watcher: (a: number, b: number) => any;
|
|
199
|
+
readonly destroy_recover_watcher: (a: number, b: number) => any;
|
|
200
|
+
readonly check_watcher: (a: number, b: number) => any;
|
|
201
|
+
readonly watcher_next_address: (a: number, b: number, c: number, d: number) => any;
|
|
202
|
+
readonly watcher_next_utxo: (a: number, b: number, c: number, d: number) => any;
|
|
203
|
+
readonly watcher_unspent_utxos: (a: number, b: number, c: number, d: number) => any;
|
|
204
|
+
readonly new_nostr_pubkey: (a: number, b: number, c: number, d: number) => any;
|
|
205
|
+
readonly update_nostr_pubkey: (a: number, b: number, c: number, d: number) => any;
|
|
206
206
|
readonly rustsecp256k1_v0_9_2_context_create: (a: number) => number;
|
|
207
207
|
readonly rustsecp256k1_v0_9_2_context_destroy: (a: number) => void;
|
|
208
208
|
readonly rustsecp256k1_v0_9_2_default_illegal_callback_fn: (a: number, b: number) => void;
|
|
@@ -228,12 +228,12 @@ export interface InitOutput {
|
|
|
228
228
|
readonly __wbindgen_free: (a: number, b: number, c: number) => void;
|
|
229
229
|
readonly __wbindgen_export_7: WebAssembly.Table;
|
|
230
230
|
readonly __externref_table_dealloc: (a: number) => void;
|
|
231
|
-
readonly
|
|
232
|
-
readonly
|
|
233
|
-
readonly
|
|
231
|
+
readonly closure1291_externref_shim: (a: number, b: number, c: any) => void;
|
|
232
|
+
readonly closure2752_externref_shim: (a: number, b: number, c: any) => void;
|
|
233
|
+
readonly closure2783_externref_shim: (a: number, b: number, c: any) => void;
|
|
234
234
|
readonly _dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h7ceba1bc0c075797: (a: number, b: number) => void;
|
|
235
|
-
readonly
|
|
236
|
-
readonly
|
|
235
|
+
readonly closure3963_externref_shim: (a: number, b: number, c: any) => void;
|
|
236
|
+
readonly closure4255_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
237
237
|
readonly __wbindgen_start: () => void;
|
|
238
238
|
}
|
|
239
239
|
|