The calm before updating angular and material

This commit is contained in:
GloriousCode
2017-10-13 17:50:35 +11:00
parent f66ce8e159
commit d793030846
13 changed files with 190 additions and 14 deletions

View File

@@ -0,0 +1,49 @@
export interface CoinTotal {
coin: string;
balance: number;
}
export interface CoinsOffline {
coin: string;
balance: number;
percentage: number;
}
export interface BTC {
address: string;
balance: number;
percentage: number;
}
export interface ETH {
address: string;
balance: number;
percentage: number;
}
export interface LTC {
address: string;
balance: number;
percentage: number;
}
export interface OfflineSummary {
BTC: BTC[];
ETH: ETH[];
LTC: LTC[];
}
export interface OnlineSummary {
BTC: BTC[];
ETH: ETH[];
LTC: LTC[];
}
export interface Wallet {
coin_totals: CoinTotal[];
coins_offline: CoinsOffline[];
offline_summary: OfflineSummary;
coins_online?: any;
online_summary: OnlineSummary;
}