13 lines
324 B
TypeScript
13 lines
324 B
TypeScript
export interface LeagueWalletViewData {
|
|
leagueId: string;
|
|
balance: number;
|
|
currency: string;
|
|
transactions: Array<{
|
|
id: string;
|
|
type: 'deposit' | 'withdrawal' | 'sponsorship' | 'prize';
|
|
amount: number;
|
|
description: string;
|
|
createdAt: string;
|
|
status: 'completed' | 'pending' | 'failed';
|
|
}>;
|
|
} |