@iotexproject/kit 0.0.89 → 0.0.90
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/index.d.ts +5 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -4185,8 +4185,11 @@ declare class IoID {
|
|
|
4185
4185
|
registedDevices(args: {
|
|
4186
4186
|
address: `0x${string}`;
|
|
4187
4187
|
}): Promise<{
|
|
4188
|
-
|
|
4189
|
-
|
|
4188
|
+
index: bigint;
|
|
4189
|
+
wallet: never;
|
|
4190
|
+
ioid: never;
|
|
4191
|
+
balance: bigint;
|
|
4192
|
+
}[] | {
|
|
4190
4193
|
error: any;
|
|
4191
4194
|
}>;
|
|
4192
4195
|
}
|