This commit is contained in:
saplf
2019-09-05 23:24:49 +08:00
parent df25ff4244
commit c8f919ce5a
19 changed files with 658 additions and 37 deletions

View File

@@ -141,6 +141,9 @@ export interface Mine {
export type Mines = Mine[];
/**
* 获取矿晶页面,支持的币种
*/
export interface CoinSupport {
id: string;
label: string;
@@ -155,21 +158,30 @@ export interface CoinAddress {
export interface CoinUnion extends CoinSupport, CoinAddress { };
/**
* 提币页面,支持的币种
*/
export interface CoinDrawn {
id: string;
label: string;
fee: string;
}
export interface FundBasic {
/**
* 总余额以VIC计算
*/
balanceSum: string;
sum: string;
/**
* 当前VIC余额
*/
balanceVIC: string;
vic: string;
/**
* 当前USDT余额
*/
balanceUSDT: string;
usdt: string;
}
export enum JournalType {
@@ -207,7 +219,7 @@ export interface Journal {
op: JournalOp;
timestamp: string;
createdAt: string;
}
export interface CommunityBasic {