poker-html-client
Version:
HTML client for online poker
19 lines (16 loc) • 386 B
TypeScript
interface AccountTransactionInformation {
id: number;
amount: number;
date: string;
}
interface AccountInformation {
available: number;
ingame: number;
total: number;
currencyName: string;
}
interface AccountServiceInformation {
login: string;
accounts: AccountInformation[];
lastTransaction: AccountTransactionInformation;
}