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