@varandas/clash-royale-api
Version:
A Clash Royale API official wrapper for seamless integration with your applications.
23 lines (22 loc) • 487 B
TypeScript
export interface ICurrentRiverRace {
state: string;
clan: IRiverRaceClan;
clans: IRiverRaceClan[];
sectionIndex: number;
}
export interface IRiverRaceClan {
tag: string;
clanScore: number;
badgeId: number;
name: string;
fame: number;
repairPoints: number;
finishTime: string;
participants: IRiverRaceParticipant[];
}
export interface IRiverRaceParticipant {
fame: number;
name: string;
repairPoints: number;
tag: string;
}