@zomlit/tsleague
Version:
RL wrapper in TypeScript
30 lines (29 loc) • 1.36 kB
TypeScript
export declare class RocketLeagueRank {
readonly name: string;
static readonly SUPERSONIC_LEGEND: RocketLeagueRank;
static readonly GRAND_CHAMPION_III: RocketLeagueRank;
static readonly GRAND_CHAMPION_II: RocketLeagueRank;
static readonly GRAND_CHAMPION_I: RocketLeagueRank;
static readonly CHAMPION_III: RocketLeagueRank;
static readonly CHAMPION_II: RocketLeagueRank;
static readonly CHAMPION_I: RocketLeagueRank;
static readonly DIAMOND_III: RocketLeagueRank;
static readonly DIAMOND_II: RocketLeagueRank;
static readonly DIAMOND_I: RocketLeagueRank;
static readonly PLATINUM_III: RocketLeagueRank;
static readonly PLATINUM_II: RocketLeagueRank;
static readonly PLATINUM_I: RocketLeagueRank;
static readonly GOLD_III: RocketLeagueRank;
static readonly GOLD_II: RocketLeagueRank;
static readonly GOLD_I: RocketLeagueRank;
static readonly SILVER_III: RocketLeagueRank;
static readonly SILVER_II: RocketLeagueRank;
static readonly SILVER_I: RocketLeagueRank;
static readonly BRONZE_III: RocketLeagueRank;
static readonly BRONZE_II: RocketLeagueRank;
static readonly BRONZE_I: RocketLeagueRank;
static readonly UNRANKED: RocketLeagueRank;
private constructor();
toString(): string;
static fromString(rankName: string): RocketLeagueRank | undefined;
}