@xmtp/wasm-bindings 0.0.12 → 0.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bindings_wasm.d.ts +238 -186
- package/dist/bindings_wasm.js +757 -801
- package/dist/bindings_wasm_bg.wasm +0 -0
- package/dist/bindings_wasm_bg.wasm.d.ts +120 -117
- package/package.json +2 -2
package/dist/bindings_wasm.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
|
-
export function
|
|
4
|
-
export function getInboxIdForAddress(host: string, account_address: string): Promise<string | undefined>;
|
|
3
|
+
export function getInboxIdForAddress(host: string, account_address: string): Promise<string>;
|
|
5
4
|
export function generateInboxId(account_address: string): string;
|
|
6
5
|
export function verifySignedWithPublicKey(signature_text: string, signature_bytes: Uint8Array, public_key: Uint8Array): void;
|
|
6
|
+
export function createClient(host: string, inbox_id: string, account_address: string, db_path?: string | null, encryption_key?: Uint8Array | null, history_sync_url?: string | null, log_options?: LogOptions | null): Promise<Client>;
|
|
7
7
|
export enum ConsentEntityType {
|
|
8
8
|
GroupId = 0,
|
|
9
9
|
InboxId = 1,
|
|
@@ -42,7 +42,8 @@ export enum MetadataField {
|
|
|
42
42
|
GroupName = 0,
|
|
43
43
|
Description = 1,
|
|
44
44
|
ImageUrlSquare = 2,
|
|
45
|
-
|
|
45
|
+
MessageExpirationFromMS = 3,
|
|
46
|
+
MessageExpirationMS = 4,
|
|
46
47
|
}
|
|
47
48
|
export enum PermissionLevel {
|
|
48
49
|
Member = 0,
|
|
@@ -84,11 +85,23 @@ type ReadableStreamType = "bytes";
|
|
|
84
85
|
export class Client {
|
|
85
86
|
private constructor();
|
|
86
87
|
free(): void;
|
|
87
|
-
|
|
88
|
+
setConsentStates(records: Consent[]): Promise<void>;
|
|
89
|
+
getConsentState(entity_type: ConsentEntityType, entity: string): Promise<ConsentState>;
|
|
90
|
+
createInboxSignatureText(): string;
|
|
91
|
+
addWalletSignatureText(new_wallet_address: string): Promise<string>;
|
|
92
|
+
revokeWalletSignatureText(wallet_address: string): Promise<string>;
|
|
93
|
+
revokeAllOtherInstallationsSignatureText(): Promise<string>;
|
|
94
|
+
revokeInstallationsSignatureText(installation_ids: Uint8Array[]): Promise<string>;
|
|
95
|
+
addSignature(signature_type: SignatureRequestType, signature_bytes: Uint8Array): Promise<void>;
|
|
96
|
+
addScwSignature(signature_type: SignatureRequestType, signature_bytes: Uint8Array, chain_id: bigint, block_number?: bigint | null): Promise<void>;
|
|
97
|
+
applySignatureRequests(): Promise<void>;
|
|
98
|
+
signWithInstallationKey(signature_text: string): Uint8Array;
|
|
99
|
+
verifySignedWithInstallationKey(signature_text: string, signature_bytes: Uint8Array): void;
|
|
100
|
+
canMessage(account_addresses: string[]): Promise<any>;
|
|
88
101
|
registerIdentity(): Promise<void>;
|
|
89
102
|
sendHistorySyncRequest(): Promise<void>;
|
|
90
103
|
sendConsentSyncRequest(): Promise<void>;
|
|
91
|
-
findInboxIdByAddress(address: string): Promise<string
|
|
104
|
+
findInboxIdByAddress(address: string): Promise<string>;
|
|
92
105
|
conversations(): Conversations;
|
|
93
106
|
/**
|
|
94
107
|
*
|
|
@@ -100,18 +113,6 @@ export class Client {
|
|
|
100
113
|
*/
|
|
101
114
|
inboxState(refresh_from_network: boolean): Promise<InboxState>;
|
|
102
115
|
getLatestInboxState(inbox_id: string): Promise<InboxState>;
|
|
103
|
-
createInboxSignatureText(): Promise<string | undefined>;
|
|
104
|
-
addWalletSignatureText(new_wallet_address: string): Promise<string>;
|
|
105
|
-
revokeWalletSignatureText(wallet_address: string): Promise<string>;
|
|
106
|
-
revokeAllOtherInstallationsSignatureText(): Promise<string>;
|
|
107
|
-
revokeInstallationsSignatureText(installation_ids: (Uint8Array)[]): Promise<string>;
|
|
108
|
-
addSignature(signature_type: SignatureRequestType, signature_bytes: Uint8Array): Promise<void>;
|
|
109
|
-
addScwSignature(signature_type: SignatureRequestType, signature_bytes: Uint8Array, chain_id: bigint, block_number?: bigint): Promise<void>;
|
|
110
|
-
applySignatureRequests(): Promise<void>;
|
|
111
|
-
signWithInstallationKey(signature_text: string): Uint8Array;
|
|
112
|
-
verifySignedWithInstallationKey(signature_text: string, signature_bytes: Uint8Array): void;
|
|
113
|
-
setConsentStates(records: (Consent)[]): Promise<void>;
|
|
114
|
-
getConsentState(entity_type: ConsentEntityType, entity: string): Promise<ConsentState>;
|
|
115
116
|
readonly accountAddress: string;
|
|
116
117
|
readonly inboxId: string;
|
|
117
118
|
readonly isRegistered: boolean;
|
|
@@ -149,78 +150,88 @@ export class Conversation {
|
|
|
149
150
|
*/
|
|
150
151
|
publishMessages(): Promise<void>;
|
|
151
152
|
sync(): Promise<void>;
|
|
152
|
-
findMessages(opts?: ListMessagesOptions): Promise<
|
|
153
|
+
findMessages(opts?: ListMessagesOptions | null): Promise<Message[]>;
|
|
153
154
|
listMembers(): Promise<any>;
|
|
154
|
-
adminList():
|
|
155
|
-
superAdminList():
|
|
155
|
+
adminList(): string[];
|
|
156
|
+
superAdminList(): string[];
|
|
156
157
|
isAdmin(inbox_id: string): boolean;
|
|
157
158
|
isSuperAdmin(inbox_id: string): boolean;
|
|
158
|
-
addMembers(account_addresses:
|
|
159
|
+
addMembers(account_addresses: string[]): Promise<void>;
|
|
159
160
|
addAdmin(inbox_id: string): Promise<void>;
|
|
160
161
|
removeAdmin(inbox_id: string): Promise<void>;
|
|
161
162
|
addSuperAdmin(inbox_id: string): Promise<void>;
|
|
162
163
|
removeSuperAdmin(inbox_id: string): Promise<void>;
|
|
163
164
|
groupPermissions(): GroupPermissions;
|
|
164
|
-
addMembersByInboxId(inbox_ids:
|
|
165
|
-
removeMembers(account_addresses:
|
|
166
|
-
removeMembersByInboxId(inbox_ids:
|
|
165
|
+
addMembersByInboxId(inbox_ids: string[]): Promise<void>;
|
|
166
|
+
removeMembers(account_addresses: string[]): Promise<void>;
|
|
167
|
+
removeMembersByInboxId(inbox_ids: string[]): Promise<void>;
|
|
167
168
|
updateGroupName(group_name: string): Promise<void>;
|
|
168
169
|
groupName(): string;
|
|
169
170
|
updateGroupImageUrlSquare(group_image_url_square: string): Promise<void>;
|
|
170
171
|
groupImageUrlSquare(): string;
|
|
171
172
|
updateGroupDescription(group_description: string): Promise<void>;
|
|
172
173
|
groupDescription(): string;
|
|
173
|
-
|
|
174
|
-
groupPinnedFrameUrl(): string;
|
|
174
|
+
stream(callback: any): StreamCloser;
|
|
175
175
|
createdAtNs(): bigint;
|
|
176
176
|
isActive(): boolean;
|
|
177
177
|
addedByInboxId(): string;
|
|
178
178
|
groupMetadata(): Promise<GroupMetadata>;
|
|
179
179
|
dmPeerInboxId(): string;
|
|
180
|
-
updatePermissionPolicy(permission_update_type: PermissionUpdateType, permission_policy_option: PermissionPolicy, metadata_field?: MetadataField): Promise<void>;
|
|
180
|
+
updatePermissionPolicy(permission_update_type: PermissionUpdateType, permission_policy_option: PermissionPolicy, metadata_field?: MetadataField | null): Promise<void>;
|
|
181
181
|
}
|
|
182
182
|
export class Conversations {
|
|
183
183
|
private constructor();
|
|
184
184
|
free(): void;
|
|
185
|
-
createGroup(account_addresses:
|
|
185
|
+
createGroup(account_addresses: string[], options?: CreateGroupOptions | null): Promise<Conversation>;
|
|
186
186
|
createDm(account_address: string): Promise<Conversation>;
|
|
187
187
|
findGroupById(group_id: string): Conversation;
|
|
188
188
|
findDmByTargetInboxId(target_inbox_id: string): Conversation;
|
|
189
189
|
findMessageById(message_id: string): Message;
|
|
190
190
|
sync(): Promise<void>;
|
|
191
191
|
syncAllConversations(): Promise<number>;
|
|
192
|
-
list(opts?: ListConversationsOptions): Array<any>;
|
|
193
|
-
listGroups(opts?: ListConversationsOptions): Array<any>;
|
|
194
|
-
listDms(opts?: ListConversationsOptions): Array<any>;
|
|
192
|
+
list(opts?: ListConversationsOptions | null): Array<any>;
|
|
193
|
+
listGroups(opts?: ListConversationsOptions | null): Array<any>;
|
|
194
|
+
listDms(opts?: ListConversationsOptions | null): Array<any>;
|
|
195
195
|
getHmacKeys(): any;
|
|
196
|
+
stream(callback: any, conversation_type?: ConversationType | null): StreamCloser;
|
|
197
|
+
streamGroups(callback: any): StreamCloser;
|
|
198
|
+
streamDms(callback: any): StreamCloser;
|
|
199
|
+
streamAllMessages(callback: any, conversation_type?: ConversationType | null): StreamCloser;
|
|
196
200
|
}
|
|
197
201
|
export class CreateGroupOptions {
|
|
198
202
|
free(): void;
|
|
199
|
-
constructor(permissions?: GroupPermissionsOptions, group_name?: string, group_image_url_square?: string, group_description?: string
|
|
200
|
-
permissions
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
203
|
+
constructor(permissions?: GroupPermissionsOptions | null, group_name?: string | null, group_image_url_square?: string | null, group_description?: string | null, custom_permission_policy_set?: PermissionPolicySet | null, message_disappearing_settings?: MessageDisappearingSettings | null);
|
|
204
|
+
get permissions(): GroupPermissionsOptions | undefined;
|
|
205
|
+
set permissions(value: GroupPermissionsOptions | null | undefined);
|
|
206
|
+
get groupName(): string;
|
|
207
|
+
set groupName(value: string | null | undefined);
|
|
208
|
+
get groupImageUrlSquare(): string;
|
|
209
|
+
set groupImageUrlSquare(value: string | null | undefined);
|
|
210
|
+
get groupDescription(): string;
|
|
211
|
+
set groupDescription(value: string | null | undefined);
|
|
212
|
+
get customPermissionPolicySet(): PermissionPolicySet | undefined;
|
|
213
|
+
set customPermissionPolicySet(value: PermissionPolicySet | null | undefined);
|
|
214
|
+
get messageDisappearingSettings(): MessageDisappearingSettings | undefined;
|
|
215
|
+
set messageDisappearingSettings(value: MessageDisappearingSettings | null | undefined);
|
|
208
216
|
}
|
|
209
217
|
export class EncodedContent {
|
|
210
218
|
free(): void;
|
|
211
|
-
constructor(type: ContentTypeId | undefined, parameters: any, fallback: string | undefined, compression: number | undefined, content: Uint8Array);
|
|
212
|
-
type
|
|
219
|
+
constructor(type: ContentTypeId | null | undefined, parameters: any, fallback: string | null | undefined, compression: number | null | undefined, content: Uint8Array);
|
|
220
|
+
get type(): ContentTypeId | undefined;
|
|
221
|
+
set type(value: ContentTypeId | null | undefined);
|
|
213
222
|
parameters: any;
|
|
214
|
-
fallback
|
|
215
|
-
|
|
223
|
+
get fallback(): string;
|
|
224
|
+
set fallback(value: string | null | undefined);
|
|
225
|
+
get compression(): number | undefined;
|
|
226
|
+
set compression(value: number | null | undefined);
|
|
216
227
|
content: Uint8Array;
|
|
217
228
|
}
|
|
218
229
|
export class GroupMember {
|
|
219
230
|
free(): void;
|
|
220
|
-
constructor(inbox_id: string, account_addresses:
|
|
231
|
+
constructor(inbox_id: string, account_addresses: string[], installation_ids: string[], permission_level: PermissionLevel, consent_state: ConsentState);
|
|
221
232
|
inboxId: string;
|
|
222
|
-
accountAddresses:
|
|
223
|
-
installationIds:
|
|
233
|
+
accountAddresses: string[];
|
|
234
|
+
installationIds: string[];
|
|
224
235
|
permissionLevel: PermissionLevel;
|
|
225
236
|
consentState: ConsentState;
|
|
226
237
|
}
|
|
@@ -244,18 +255,19 @@ export class HmacKey {
|
|
|
244
255
|
}
|
|
245
256
|
export class InboxState {
|
|
246
257
|
free(): void;
|
|
247
|
-
constructor(inbox_id: string, recovery_address: string, installations:
|
|
258
|
+
constructor(inbox_id: string, recovery_address: string, installations: Installation[], account_addresses: string[]);
|
|
248
259
|
inboxId: string;
|
|
249
260
|
recoveryAddress: string;
|
|
250
|
-
installations:
|
|
251
|
-
accountAddresses:
|
|
261
|
+
installations: Installation[];
|
|
262
|
+
accountAddresses: string[];
|
|
252
263
|
}
|
|
253
264
|
export class Installation {
|
|
254
265
|
free(): void;
|
|
255
|
-
constructor(bytes: Uint8Array, id: string, client_timestamp_ns?: bigint);
|
|
266
|
+
constructor(bytes: Uint8Array, id: string, client_timestamp_ns?: bigint | null);
|
|
256
267
|
bytes: Uint8Array;
|
|
257
268
|
id: string;
|
|
258
|
-
clientTimestampNs
|
|
269
|
+
get clientTimestampNs(): bigint | undefined;
|
|
270
|
+
set clientTimestampNs(value: bigint | null | undefined);
|
|
259
271
|
}
|
|
260
272
|
export class IntoUnderlyingByteSource {
|
|
261
273
|
private constructor();
|
|
@@ -281,28 +293,38 @@ export class IntoUnderlyingSource {
|
|
|
281
293
|
}
|
|
282
294
|
export class ListConversationsOptions {
|
|
283
295
|
free(): void;
|
|
284
|
-
constructor(allowed_states?: any[], conversation_type?: ConversationType, created_after_ns?: bigint, created_before_ns?: bigint, limit?: bigint);
|
|
285
|
-
allowedStates
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
296
|
+
constructor(allowed_states?: any[] | null, conversation_type?: ConversationType | null, created_after_ns?: bigint | null, created_before_ns?: bigint | null, limit?: bigint | null);
|
|
297
|
+
get allowedStates(): any[] | undefined;
|
|
298
|
+
set allowedStates(value: any[] | null | undefined);
|
|
299
|
+
get conversationType(): ConversationType | undefined;
|
|
300
|
+
set conversationType(value: ConversationType | null | undefined);
|
|
301
|
+
get createdAfterNs(): bigint | undefined;
|
|
302
|
+
set createdAfterNs(value: bigint | null | undefined);
|
|
303
|
+
get createdBeforeNs(): bigint | undefined;
|
|
304
|
+
set createdBeforeNs(value: bigint | null | undefined);
|
|
305
|
+
get limit(): bigint | undefined;
|
|
306
|
+
set limit(value: bigint | null | undefined);
|
|
290
307
|
}
|
|
291
308
|
export class ListMessagesOptions {
|
|
292
309
|
free(): void;
|
|
293
|
-
constructor(sent_before_ns?: bigint, sent_after_ns?: bigint, limit?: bigint, delivery_status?: DeliveryStatus, direction?: SortDirection);
|
|
294
|
-
sentBeforeNs
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
310
|
+
constructor(sent_before_ns?: bigint | null, sent_after_ns?: bigint | null, limit?: bigint | null, delivery_status?: DeliveryStatus | null, direction?: SortDirection | null);
|
|
311
|
+
get sentBeforeNs(): bigint | undefined;
|
|
312
|
+
set sentBeforeNs(value: bigint | null | undefined);
|
|
313
|
+
get sentAfterNs(): bigint | undefined;
|
|
314
|
+
set sentAfterNs(value: bigint | null | undefined);
|
|
315
|
+
get limit(): bigint | undefined;
|
|
316
|
+
set limit(value: bigint | null | undefined);
|
|
317
|
+
get deliveryStatus(): DeliveryStatus | undefined;
|
|
318
|
+
set deliveryStatus(value: DeliveryStatus | null | undefined);
|
|
319
|
+
get direction(): SortDirection | undefined;
|
|
320
|
+
set direction(value: SortDirection | null | undefined);
|
|
299
321
|
}
|
|
300
322
|
/**
|
|
301
323
|
* Specify options for the logger
|
|
302
324
|
*/
|
|
303
325
|
export class LogOptions {
|
|
304
326
|
free(): void;
|
|
305
|
-
constructor(structured: boolean, performance: boolean, level?: LogLevel);
|
|
327
|
+
constructor(structured: boolean, performance: boolean, level?: LogLevel | null);
|
|
306
328
|
/**
|
|
307
329
|
* enable structured JSON logging to stdout.Useful for third-party log viewers
|
|
308
330
|
*/
|
|
@@ -314,7 +336,11 @@ export class LogOptions {
|
|
|
314
336
|
/**
|
|
315
337
|
* filter for logs
|
|
316
338
|
*/
|
|
317
|
-
level
|
|
339
|
+
get level(): LogLevel | undefined;
|
|
340
|
+
/**
|
|
341
|
+
* filter for logs
|
|
342
|
+
*/
|
|
343
|
+
set level(value: LogLevel | null | undefined);
|
|
318
344
|
}
|
|
319
345
|
export class Message {
|
|
320
346
|
free(): void;
|
|
@@ -327,9 +353,13 @@ export class Message {
|
|
|
327
353
|
kind: GroupMessageKind;
|
|
328
354
|
deliveryStatus: DeliveryStatus;
|
|
329
355
|
}
|
|
356
|
+
export class MessageDisappearingSettings {
|
|
357
|
+
private constructor();
|
|
358
|
+
free(): void;
|
|
359
|
+
}
|
|
330
360
|
export class PermissionPolicySet {
|
|
331
361
|
free(): void;
|
|
332
|
-
constructor(add_member_policy: PermissionPolicy, remove_member_policy: PermissionPolicy, add_admin_policy: PermissionPolicy, remove_admin_policy: PermissionPolicy, update_group_name_policy: PermissionPolicy, update_group_description_policy: PermissionPolicy, update_group_image_url_square_policy: PermissionPolicy,
|
|
362
|
+
constructor(add_member_policy: PermissionPolicy, remove_member_policy: PermissionPolicy, add_admin_policy: PermissionPolicy, remove_admin_policy: PermissionPolicy, update_group_name_policy: PermissionPolicy, update_group_description_policy: PermissionPolicy, update_group_image_url_square_policy: PermissionPolicy, update_message_disappearing_policy: PermissionPolicy);
|
|
333
363
|
addMemberPolicy: PermissionPolicy;
|
|
334
364
|
removeMemberPolicy: PermissionPolicy;
|
|
335
365
|
addAdminPolicy: PermissionPolicy;
|
|
@@ -337,8 +367,27 @@ export class PermissionPolicySet {
|
|
|
337
367
|
updateGroupNamePolicy: PermissionPolicy;
|
|
338
368
|
updateGroupDescriptionPolicy: PermissionPolicy;
|
|
339
369
|
updateGroupImageUrlSquarePolicy: PermissionPolicy;
|
|
340
|
-
|
|
341
|
-
|
|
370
|
+
updateMessageDisappearingPolicy: PermissionPolicy;
|
|
371
|
+
}
|
|
372
|
+
export class StreamCloser {
|
|
373
|
+
private constructor();
|
|
374
|
+
free(): void;
|
|
375
|
+
/**
|
|
376
|
+
* Signal the stream to end
|
|
377
|
+
* Does not wait for the stream to end.
|
|
378
|
+
*/
|
|
379
|
+
end(): void;
|
|
380
|
+
/**
|
|
381
|
+
* End the stream and `await` for it to shutdown
|
|
382
|
+
* Returns the `Result` of the task.
|
|
383
|
+
* End the stream and asynchronously wait for it to shutdown
|
|
384
|
+
*/
|
|
385
|
+
endAndWait(): Promise<void>;
|
|
386
|
+
waitForReady(): Promise<void>;
|
|
387
|
+
/**
|
|
388
|
+
* Checks if this stream is closed
|
|
389
|
+
*/
|
|
390
|
+
isClosed(): boolean;
|
|
342
391
|
}
|
|
343
392
|
export class Version {
|
|
344
393
|
private constructor();
|
|
@@ -349,60 +398,55 @@ export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembl
|
|
|
349
398
|
|
|
350
399
|
export interface InitOutput {
|
|
351
400
|
readonly memory: WebAssembly.Memory;
|
|
352
|
-
readonly
|
|
353
|
-
readonly
|
|
354
|
-
readonly
|
|
355
|
-
readonly
|
|
356
|
-
readonly
|
|
357
|
-
readonly
|
|
358
|
-
readonly
|
|
359
|
-
readonly
|
|
360
|
-
readonly
|
|
361
|
-
readonly
|
|
362
|
-
readonly
|
|
363
|
-
readonly
|
|
364
|
-
readonly
|
|
365
|
-
readonly
|
|
366
|
-
readonly
|
|
367
|
-
readonly
|
|
368
|
-
readonly
|
|
369
|
-
readonly
|
|
370
|
-
readonly
|
|
371
|
-
readonly
|
|
372
|
-
readonly
|
|
401
|
+
readonly __wbg_listconversationsoptions_free: (a: number, b: number) => void;
|
|
402
|
+
readonly __wbg_get_listconversationsoptions_allowedStates: (a: number) => [number, number];
|
|
403
|
+
readonly __wbg_set_listconversationsoptions_allowedStates: (a: number, b: number, c: number) => void;
|
|
404
|
+
readonly __wbg_get_listconversationsoptions_conversationType: (a: number) => number;
|
|
405
|
+
readonly __wbg_set_listconversationsoptions_conversationType: (a: number, b: number) => void;
|
|
406
|
+
readonly __wbg_get_listconversationsoptions_createdAfterNs: (a: number) => [number, bigint];
|
|
407
|
+
readonly __wbg_set_listconversationsoptions_createdAfterNs: (a: number, b: number, c: bigint) => void;
|
|
408
|
+
readonly __wbg_get_listconversationsoptions_createdBeforeNs: (a: number) => [number, bigint];
|
|
409
|
+
readonly __wbg_set_listconversationsoptions_createdBeforeNs: (a: number, b: number, c: bigint) => void;
|
|
410
|
+
readonly __wbg_get_listconversationsoptions_limit: (a: number) => [number, bigint];
|
|
411
|
+
readonly __wbg_set_listconversationsoptions_limit: (a: number, b: number, c: bigint) => void;
|
|
412
|
+
readonly listconversationsoptions_new: (a: number, b: number, c: number, d: number, e: bigint, f: number, g: bigint, h: number, i: bigint) => number;
|
|
413
|
+
readonly __wbg_creategroupoptions_free: (a: number, b: number) => void;
|
|
414
|
+
readonly __wbg_get_creategroupoptions_permissions: (a: number) => number;
|
|
415
|
+
readonly __wbg_set_creategroupoptions_permissions: (a: number, b: number) => void;
|
|
416
|
+
readonly __wbg_get_creategroupoptions_groupName: (a: number) => [number, number];
|
|
417
|
+
readonly __wbg_set_creategroupoptions_groupName: (a: number, b: number, c: number) => void;
|
|
418
|
+
readonly __wbg_get_creategroupoptions_groupImageUrlSquare: (a: number) => [number, number];
|
|
419
|
+
readonly __wbg_set_creategroupoptions_groupImageUrlSquare: (a: number, b: number, c: number) => void;
|
|
420
|
+
readonly __wbg_get_creategroupoptions_groupDescription: (a: number) => [number, number];
|
|
421
|
+
readonly __wbg_set_creategroupoptions_groupDescription: (a: number, b: number, c: number) => void;
|
|
422
|
+
readonly __wbg_get_creategroupoptions_customPermissionPolicySet: (a: number) => number;
|
|
423
|
+
readonly __wbg_set_creategroupoptions_customPermissionPolicySet: (a: number, b: number) => void;
|
|
424
|
+
readonly __wbg_get_creategroupoptions_messageDisappearingSettings: (a: number) => number;
|
|
425
|
+
readonly __wbg_set_creategroupoptions_messageDisappearingSettings: (a: number, b: number) => void;
|
|
426
|
+
readonly creategroupoptions_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number) => number;
|
|
427
|
+
readonly __wbg_hmackey_free: (a: number, b: number) => void;
|
|
428
|
+
readonly __wbg_get_hmackey_key: (a: number) => [number, number];
|
|
429
|
+
readonly __wbg_set_hmackey_key: (a: number, b: number, c: number) => void;
|
|
430
|
+
readonly __wbg_get_hmackey_epoch: (a: number) => bigint;
|
|
431
|
+
readonly __wbg_set_hmackey_epoch: (a: number, b: bigint) => void;
|
|
432
|
+
readonly __wbg_conversations_free: (a: number, b: number) => void;
|
|
433
|
+
readonly conversations_createGroup: (a: number, b: number, c: number, d: number) => any;
|
|
434
|
+
readonly conversations_createDm: (a: number, b: number, c: number) => any;
|
|
435
|
+
readonly conversations_findGroupById: (a: number, b: number, c: number) => [number, number, number];
|
|
436
|
+
readonly conversations_findDmByTargetInboxId: (a: number, b: number, c: number) => [number, number, number];
|
|
437
|
+
readonly conversations_findMessageById: (a: number, b: number, c: number) => [number, number, number];
|
|
438
|
+
readonly conversations_sync: (a: number) => any;
|
|
439
|
+
readonly conversations_syncAllConversations: (a: number) => any;
|
|
440
|
+
readonly conversations_list: (a: number, b: number) => [number, number, number];
|
|
441
|
+
readonly conversations_listGroups: (a: number, b: number) => [number, number, number];
|
|
442
|
+
readonly conversations_listDms: (a: number, b: number) => [number, number, number];
|
|
443
|
+
readonly conversations_getHmacKeys: (a: number) => [number, number, number];
|
|
444
|
+
readonly conversations_stream: (a: number, b: any, c: number) => [number, number, number];
|
|
445
|
+
readonly conversations_streamGroups: (a: number, b: any) => [number, number, number];
|
|
446
|
+
readonly conversations_streamDms: (a: number, b: any) => [number, number, number];
|
|
447
|
+
readonly conversations_streamAllMessages: (a: number, b: any, c: number) => [number, number, number];
|
|
373
448
|
readonly getInboxIdForAddress: (a: number, b: number, c: number, d: number) => any;
|
|
374
449
|
readonly generateInboxId: (a: number, b: number) => [number, number, number, number];
|
|
375
|
-
readonly __wbg_installation_free: (a: number, b: number) => void;
|
|
376
|
-
readonly __wbg_get_installation_bytes: (a: number) => any;
|
|
377
|
-
readonly __wbg_set_installation_bytes: (a: number, b: any) => void;
|
|
378
|
-
readonly __wbg_get_installation_id: (a: number) => [number, number];
|
|
379
|
-
readonly __wbg_set_installation_id: (a: number, b: number, c: number) => void;
|
|
380
|
-
readonly __wbg_get_installation_clientTimestampNs: (a: number) => [number, bigint];
|
|
381
|
-
readonly __wbg_set_installation_clientTimestampNs: (a: number, b: number, c: bigint) => void;
|
|
382
|
-
readonly installation_new: (a: any, b: number, c: number, d: number, e: bigint) => number;
|
|
383
|
-
readonly __wbg_inboxstate_free: (a: number, b: number) => void;
|
|
384
|
-
readonly __wbg_get_inboxstate_inboxId: (a: number) => [number, number];
|
|
385
|
-
readonly __wbg_set_inboxstate_inboxId: (a: number, b: number, c: number) => void;
|
|
386
|
-
readonly __wbg_get_inboxstate_recoveryAddress: (a: number) => [number, number];
|
|
387
|
-
readonly __wbg_set_inboxstate_recoveryAddress: (a: number, b: number, c: number) => void;
|
|
388
|
-
readonly __wbg_get_inboxstate_installations: (a: number) => [number, number];
|
|
389
|
-
readonly __wbg_set_inboxstate_installations: (a: number, b: number, c: number) => void;
|
|
390
|
-
readonly __wbg_get_inboxstate_accountAddresses: (a: number) => [number, number];
|
|
391
|
-
readonly __wbg_set_inboxstate_accountAddresses: (a: number, b: number, c: number) => void;
|
|
392
|
-
readonly inboxstate_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => number;
|
|
393
|
-
readonly client_inboxState: (a: number, b: number) => any;
|
|
394
|
-
readonly client_getLatestInboxState: (a: number, b: number, c: number) => any;
|
|
395
|
-
readonly verifySignedWithPublicKey: (a: number, b: number, c: any, d: any) => [number, number];
|
|
396
|
-
readonly client_createInboxSignatureText: (a: number) => any;
|
|
397
|
-
readonly client_addWalletSignatureText: (a: number, b: number, c: number) => any;
|
|
398
|
-
readonly client_revokeWalletSignatureText: (a: number, b: number, c: number) => any;
|
|
399
|
-
readonly client_revokeAllOtherInstallationsSignatureText: (a: number) => any;
|
|
400
|
-
readonly client_revokeInstallationsSignatureText: (a: number, b: number, c: number) => any;
|
|
401
|
-
readonly client_addSignature: (a: number, b: number, c: any) => any;
|
|
402
|
-
readonly client_addScwSignature: (a: number, b: number, c: any, d: bigint, e: number, f: bigint) => any;
|
|
403
|
-
readonly client_applySignatureRequests: (a: number) => any;
|
|
404
|
-
readonly client_signWithInstallationKey: (a: number, b: number, c: number) => [number, number, number];
|
|
405
|
-
readonly client_verifySignedWithInstallationKey: (a: number, b: number, c: number, d: any) => [number, number];
|
|
406
450
|
readonly __wbg_consent_free: (a: number, b: number) => void;
|
|
407
451
|
readonly __wbg_get_consent_entityType: (a: number) => number;
|
|
408
452
|
readonly __wbg_set_consent_entityType: (a: number, b: number) => void;
|
|
@@ -416,6 +460,7 @@ export interface InitOutput {
|
|
|
416
460
|
readonly conversation_consentState: (a: number) => [number, number, number];
|
|
417
461
|
readonly conversation_updateConsentState: (a: number, b: number) => [number, number];
|
|
418
462
|
readonly __wbg_groupmetadata_free: (a: number, b: number) => void;
|
|
463
|
+
readonly __wbg_messagedisappearingsettings_free: (a: number, b: number) => void;
|
|
419
464
|
readonly groupmetadata_creatorInboxId: (a: number) => [number, number];
|
|
420
465
|
readonly groupmetadata_conversationType: (a: number) => [number, number];
|
|
421
466
|
readonly __wbg_groupmember_free: (a: number, b: number) => void;
|
|
@@ -455,16 +500,26 @@ export interface InitOutput {
|
|
|
455
500
|
readonly conversation_groupImageUrlSquare: (a: number) => [number, number, number, number];
|
|
456
501
|
readonly conversation_updateGroupDescription: (a: number, b: number, c: number) => any;
|
|
457
502
|
readonly conversation_groupDescription: (a: number) => [number, number, number, number];
|
|
458
|
-
readonly
|
|
459
|
-
readonly conversation_groupPinnedFrameUrl: (a: number) => [number, number, number, number];
|
|
503
|
+
readonly conversation_stream: (a: number, b: any) => [number, number, number];
|
|
460
504
|
readonly conversation_createdAtNs: (a: number) => bigint;
|
|
461
505
|
readonly conversation_isActive: (a: number) => [number, number, number];
|
|
462
506
|
readonly conversation_addedByInboxId: (a: number) => [number, number, number, number];
|
|
463
507
|
readonly conversation_groupMetadata: (a: number) => any;
|
|
464
508
|
readonly conversation_dmPeerInboxId: (a: number) => [number, number, number, number];
|
|
465
509
|
readonly conversation_updatePermissionPolicy: (a: number, b: number, c: number, d: number) => any;
|
|
466
|
-
readonly
|
|
510
|
+
readonly verifySignedWithPublicKey: (a: number, b: number, c: any, d: any) => [number, number];
|
|
511
|
+
readonly client_createInboxSignatureText: (a: number) => [number, number, number, number];
|
|
512
|
+
readonly client_addWalletSignatureText: (a: number, b: number, c: number) => any;
|
|
513
|
+
readonly client_revokeWalletSignatureText: (a: number, b: number, c: number) => any;
|
|
514
|
+
readonly client_revokeAllOtherInstallationsSignatureText: (a: number) => any;
|
|
515
|
+
readonly client_revokeInstallationsSignatureText: (a: number, b: number, c: number) => any;
|
|
516
|
+
readonly client_addSignature: (a: number, b: number, c: any) => any;
|
|
517
|
+
readonly client_addScwSignature: (a: number, b: number, c: any, d: bigint, e: number, f: bigint) => any;
|
|
518
|
+
readonly client_applySignatureRequests: (a: number) => any;
|
|
519
|
+
readonly client_signWithInstallationKey: (a: number, b: number, c: number) => [number, number, number];
|
|
520
|
+
readonly client_verifySignedWithInstallationKey: (a: number, b: number, c: number, d: any) => [number, number];
|
|
467
521
|
readonly __wbg_get_groupmember_inboxId: (a: number) => [number, number];
|
|
522
|
+
readonly __wbg_set_groupmember_inboxId: (a: number, b: number, c: number) => void;
|
|
468
523
|
readonly __wbg_permissionpolicyset_free: (a: number, b: number) => void;
|
|
469
524
|
readonly __wbg_get_permissionpolicyset_addMemberPolicy: (a: number) => number;
|
|
470
525
|
readonly __wbg_set_permissionpolicyset_addMemberPolicy: (a: number, b: number) => void;
|
|
@@ -480,57 +535,38 @@ export interface InitOutput {
|
|
|
480
535
|
readonly __wbg_set_permissionpolicyset_updateGroupDescriptionPolicy: (a: number, b: number) => void;
|
|
481
536
|
readonly __wbg_get_permissionpolicyset_updateGroupImageUrlSquarePolicy: (a: number) => number;
|
|
482
537
|
readonly __wbg_set_permissionpolicyset_updateGroupImageUrlSquarePolicy: (a: number, b: number) => void;
|
|
483
|
-
readonly
|
|
484
|
-
readonly
|
|
485
|
-
readonly
|
|
486
|
-
readonly __wbg_set_permissionpolicyset_updateMessageExpirationPolicy: (a: number, b: number) => void;
|
|
487
|
-
readonly permissionpolicyset_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number) => number;
|
|
538
|
+
readonly __wbg_get_permissionpolicyset_updateMessageDisappearingPolicy: (a: number) => number;
|
|
539
|
+
readonly __wbg_set_permissionpolicyset_updateMessageDisappearingPolicy: (a: number, b: number) => void;
|
|
540
|
+
readonly permissionpolicyset_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => number;
|
|
488
541
|
readonly __wbg_grouppermissions_free: (a: number, b: number) => void;
|
|
489
542
|
readonly grouppermissions_policyType: (a: number) => [number, number, number];
|
|
490
543
|
readonly grouppermissions_policySet: (a: number) => [number, number, number];
|
|
491
|
-
readonly
|
|
492
|
-
readonly
|
|
493
|
-
readonly
|
|
494
|
-
readonly
|
|
495
|
-
readonly
|
|
496
|
-
readonly
|
|
497
|
-
readonly
|
|
498
|
-
readonly
|
|
499
|
-
readonly
|
|
500
|
-
readonly
|
|
501
|
-
readonly
|
|
502
|
-
readonly
|
|
503
|
-
readonly
|
|
504
|
-
readonly
|
|
505
|
-
readonly
|
|
506
|
-
readonly
|
|
507
|
-
readonly
|
|
508
|
-
readonly
|
|
509
|
-
readonly
|
|
510
|
-
readonly
|
|
511
|
-
readonly
|
|
512
|
-
readonly
|
|
513
|
-
readonly
|
|
514
|
-
readonly
|
|
515
|
-
readonly
|
|
516
|
-
readonly
|
|
517
|
-
readonly __wbg_hmackey_free: (a: number, b: number) => void;
|
|
518
|
-
readonly __wbg_get_hmackey_key: (a: number) => [number, number];
|
|
519
|
-
readonly __wbg_set_hmackey_key: (a: number, b: number, c: number) => void;
|
|
520
|
-
readonly __wbg_get_hmackey_epoch: (a: number) => bigint;
|
|
521
|
-
readonly __wbg_set_hmackey_epoch: (a: number, b: bigint) => void;
|
|
522
|
-
readonly __wbg_conversations_free: (a: number, b: number) => void;
|
|
523
|
-
readonly conversations_createGroup: (a: number, b: number, c: number, d: number) => any;
|
|
524
|
-
readonly conversations_createDm: (a: number, b: number, c: number) => any;
|
|
525
|
-
readonly conversations_findGroupById: (a: number, b: number, c: number) => [number, number, number];
|
|
526
|
-
readonly conversations_findDmByTargetInboxId: (a: number, b: number, c: number) => [number, number, number];
|
|
527
|
-
readonly conversations_findMessageById: (a: number, b: number, c: number) => [number, number, number];
|
|
528
|
-
readonly conversations_sync: (a: number) => any;
|
|
529
|
-
readonly conversations_syncAllConversations: (a: number) => any;
|
|
530
|
-
readonly conversations_list: (a: number, b: number) => [number, number, number];
|
|
531
|
-
readonly conversations_listGroups: (a: number, b: number) => [number, number, number];
|
|
532
|
-
readonly conversations_listDms: (a: number, b: number) => [number, number, number];
|
|
533
|
-
readonly conversations_getHmacKeys: (a: number) => [number, number, number];
|
|
544
|
+
readonly __wbg_streamcloser_free: (a: number, b: number) => void;
|
|
545
|
+
readonly streamcloser_end: (a: number) => void;
|
|
546
|
+
readonly streamcloser_endAndWait: (a: number) => any;
|
|
547
|
+
readonly streamcloser_waitForReady: (a: number) => any;
|
|
548
|
+
readonly streamcloser_isClosed: (a: number) => number;
|
|
549
|
+
readonly __wbg_client_free: (a: number, b: number) => void;
|
|
550
|
+
readonly __wbg_logoptions_free: (a: number, b: number) => void;
|
|
551
|
+
readonly __wbg_get_logoptions_structured: (a: number) => number;
|
|
552
|
+
readonly __wbg_set_logoptions_structured: (a: number, b: number) => void;
|
|
553
|
+
readonly __wbg_get_logoptions_performance: (a: number) => number;
|
|
554
|
+
readonly __wbg_set_logoptions_performance: (a: number, b: number) => void;
|
|
555
|
+
readonly __wbg_get_logoptions_level: (a: number) => number;
|
|
556
|
+
readonly __wbg_set_logoptions_level: (a: number, b: number) => void;
|
|
557
|
+
readonly logoptions_new: (a: number, b: number, c: number) => number;
|
|
558
|
+
readonly createClient: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number, j: number, k: number, l: number) => any;
|
|
559
|
+
readonly client_accountAddress: (a: number) => [number, number];
|
|
560
|
+
readonly client_inboxId: (a: number) => [number, number];
|
|
561
|
+
readonly client_isRegistered: (a: number) => number;
|
|
562
|
+
readonly client_installationId: (a: number) => [number, number];
|
|
563
|
+
readonly client_installationIdBytes: (a: number) => any;
|
|
564
|
+
readonly client_canMessage: (a: number, b: number, c: number) => any;
|
|
565
|
+
readonly client_registerIdentity: (a: number) => any;
|
|
566
|
+
readonly client_sendHistorySyncRequest: (a: number) => any;
|
|
567
|
+
readonly client_sendConsentSyncRequest: (a: number) => any;
|
|
568
|
+
readonly client_findInboxIdByAddress: (a: number, b: number, c: number) => any;
|
|
569
|
+
readonly client_conversations: (a: number) => number;
|
|
534
570
|
readonly __wbg_contenttypeid_free: (a: number, b: number) => void;
|
|
535
571
|
readonly __wbg_get_contenttypeid_authorityId: (a: number) => [number, number];
|
|
536
572
|
readonly __wbg_set_contenttypeid_authorityId: (a: number, b: number, c: number) => void;
|
|
@@ -553,7 +589,27 @@ export interface InitOutput {
|
|
|
553
589
|
readonly __wbg_get_encodedcontent_content: (a: number) => any;
|
|
554
590
|
readonly __wbg_set_encodedcontent_content: (a: number, b: any) => void;
|
|
555
591
|
readonly encodedcontent_new: (a: number, b: any, c: number, d: number, e: number, f: any) => number;
|
|
592
|
+
readonly __wbg_installation_free: (a: number, b: number) => void;
|
|
593
|
+
readonly __wbg_get_installation_bytes: (a: number) => any;
|
|
594
|
+
readonly __wbg_set_installation_bytes: (a: number, b: any) => void;
|
|
595
|
+
readonly __wbg_get_installation_id: (a: number) => [number, number];
|
|
596
|
+
readonly __wbg_set_installation_id: (a: number, b: number, c: number) => void;
|
|
597
|
+
readonly __wbg_get_installation_clientTimestampNs: (a: number) => [number, bigint];
|
|
598
|
+
readonly __wbg_set_installation_clientTimestampNs: (a: number, b: number, c: bigint) => void;
|
|
599
|
+
readonly installation_new: (a: any, b: number, c: number, d: number, e: bigint) => number;
|
|
600
|
+
readonly __wbg_inboxstate_free: (a: number, b: number) => void;
|
|
601
|
+
readonly __wbg_get_inboxstate_installations: (a: number) => [number, number];
|
|
602
|
+
readonly __wbg_set_inboxstate_installations: (a: number, b: number, c: number) => void;
|
|
603
|
+
readonly __wbg_get_inboxstate_accountAddresses: (a: number) => [number, number];
|
|
604
|
+
readonly __wbg_set_inboxstate_accountAddresses: (a: number, b: number, c: number) => void;
|
|
605
|
+
readonly inboxstate_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => number;
|
|
606
|
+
readonly client_inboxState: (a: number, b: number) => any;
|
|
607
|
+
readonly client_getLatestInboxState: (a: number, b: number, c: number) => any;
|
|
556
608
|
readonly __wbg_listmessagesoptions_free: (a: number, b: number) => void;
|
|
609
|
+
readonly __wbg_get_listmessagesoptions_sentAfterNs: (a: number) => [number, bigint];
|
|
610
|
+
readonly __wbg_set_listmessagesoptions_sentAfterNs: (a: number, b: number, c: bigint) => void;
|
|
611
|
+
readonly __wbg_get_listmessagesoptions_limit: (a: number) => [number, bigint];
|
|
612
|
+
readonly __wbg_set_listmessagesoptions_limit: (a: number, b: number, c: bigint) => void;
|
|
557
613
|
readonly __wbg_get_listmessagesoptions_deliveryStatus: (a: number) => number;
|
|
558
614
|
readonly __wbg_set_listmessagesoptions_deliveryStatus: (a: number, b: number) => void;
|
|
559
615
|
readonly __wbg_get_listmessagesoptions_direction: (a: number) => number;
|
|
@@ -562,6 +618,8 @@ export interface InitOutput {
|
|
|
562
618
|
readonly __wbg_message_free: (a: number, b: number) => void;
|
|
563
619
|
readonly __wbg_get_message_id: (a: number) => [number, number];
|
|
564
620
|
readonly __wbg_set_message_id: (a: number, b: number, c: number) => void;
|
|
621
|
+
readonly __wbg_get_message_sentAtNs: (a: number) => bigint;
|
|
622
|
+
readonly __wbg_set_message_sentAtNs: (a: number, b: bigint) => void;
|
|
565
623
|
readonly __wbg_get_message_convoId: (a: number) => [number, number];
|
|
566
624
|
readonly __wbg_set_message_convoId: (a: number, b: number, c: number) => void;
|
|
567
625
|
readonly __wbg_get_message_senderInboxId: (a: number) => [number, number];
|
|
@@ -573,18 +631,12 @@ export interface InitOutput {
|
|
|
573
631
|
readonly __wbg_get_message_deliveryStatus: (a: number) => number;
|
|
574
632
|
readonly __wbg_set_message_deliveryStatus: (a: number, b: number) => void;
|
|
575
633
|
readonly message_new: (a: number, b: number, c: bigint, d: number, e: number, f: number, g: number, h: number, i: number, j: number) => number;
|
|
576
|
-
readonly __wbg_get_message_sentAtNs: (a: number) => bigint;
|
|
577
|
-
readonly __wbg_set_listconversationsoptions_createdAfterNs: (a: number, b: number, c: bigint) => void;
|
|
578
|
-
readonly __wbg_set_listconversationsoptions_createdBeforeNs: (a: number, b: number, c: bigint) => void;
|
|
579
634
|
readonly __wbg_set_listmessagesoptions_sentBeforeNs: (a: number, b: number, c: bigint) => void;
|
|
580
|
-
readonly
|
|
581
|
-
readonly
|
|
582
|
-
readonly __wbg_set_message_sentAtNs: (a: number, b: bigint) => void;
|
|
583
|
-
readonly __wbg_get_listconversationsoptions_createdAfterNs: (a: number) => [number, bigint];
|
|
584
|
-
readonly __wbg_get_listconversationsoptions_createdBeforeNs: (a: number) => [number, bigint];
|
|
635
|
+
readonly __wbg_get_inboxstate_inboxId: (a: number) => [number, number];
|
|
636
|
+
readonly __wbg_get_inboxstate_recoveryAddress: (a: number) => [number, number];
|
|
585
637
|
readonly __wbg_get_listmessagesoptions_sentBeforeNs: (a: number) => [number, bigint];
|
|
586
|
-
readonly
|
|
587
|
-
readonly
|
|
638
|
+
readonly __wbg_set_inboxstate_inboxId: (a: number, b: number, c: number) => void;
|
|
639
|
+
readonly __wbg_set_inboxstate_recoveryAddress: (a: number, b: number, c: number) => void;
|
|
588
640
|
readonly __wbg_version_free: (a: number, b: number) => void;
|
|
589
641
|
readonly __wbg_intounderlyingsource_free: (a: number, b: number) => void;
|
|
590
642
|
readonly intounderlyingsource_pull: (a: number, b: any) => any;
|
|
@@ -601,15 +653,15 @@ export interface InitOutput {
|
|
|
601
653
|
readonly intounderlyingbytesource_cancel: (a: number) => void;
|
|
602
654
|
readonly __wbindgen_malloc: (a: number, b: number) => number;
|
|
603
655
|
readonly __wbindgen_realloc: (a: number, b: number, c: number, d: number) => number;
|
|
656
|
+
readonly __wbindgen_export_2: WebAssembly.Table;
|
|
604
657
|
readonly __wbindgen_free: (a: number, b: number, c: number) => void;
|
|
605
658
|
readonly __wbindgen_exn_store: (a: number) => void;
|
|
606
659
|
readonly __externref_table_alloc: () => number;
|
|
607
|
-
readonly __wbindgen_export_5: WebAssembly.Table;
|
|
608
660
|
readonly __wbindgen_export_6: WebAssembly.Table;
|
|
609
|
-
readonly __externref_table_dealloc: (a: number) => void;
|
|
610
661
|
readonly __externref_drop_slice: (a: number, b: number) => void;
|
|
611
|
-
readonly
|
|
612
|
-
readonly
|
|
662
|
+
readonly __externref_table_dealloc: (a: number) => void;
|
|
663
|
+
readonly closure2900_externref_shim: (a: number, b: number, c: any) => void;
|
|
664
|
+
readonly closure3826_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
613
665
|
readonly __wbindgen_start: () => void;
|
|
614
666
|
}
|
|
615
667
|
|