@riocrypto/common 1.0.1619 → 1.0.1621
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/build/types/user.d.ts +3 -0
- package/package.json +1 -1
package/build/types/user.d.ts
CHANGED
|
@@ -119,5 +119,8 @@ export declare type User = {
|
|
|
119
119
|
};
|
|
120
120
|
};
|
|
121
121
|
};
|
|
122
|
+
cumulativeVolumesInUSD?: {
|
|
123
|
+
[country in Country]?: number;
|
|
124
|
+
};
|
|
122
125
|
} & (UserType.Individual extends UserType ? IndividualUser : {}) & (UserType.Business extends UserType ? BusinessUser : {});
|
|
123
126
|
export {};
|