fbsim-core JavaScript & TypeScript API - v1.0.0-beta.2
    Preparing search index...

    Interface LeagueTeamRecord

    LeagueTeamRecord type

    A 3-tuple of usizes representing the number of wins, losses, and ties for a given team. May be for a season or for many seasons.

    interface LeagueTeamRecord {
        losses: number;
        ties: number;
        wins: number;
    }
    Index

    Properties

    Properties

    losses: number
    ties: number
    wins: number