UNPKG

poker-html-client

Version:
19 lines (16 loc) 386 B
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; }