UNPKG

soccer-go

Version:

Soccer CLI for stats and results.

10 lines (9 loc) 323 B
export interface ILeague { code: string; name: string; type: 'LEAGUE' | 'LEAGUE_CUP' | 'CUP' | 'PLAYOFFS'; tier: 'FREE' | 'PAID'; } export declare const leagueCodes: ILeague[]; export declare const getLeagueByName: (name: string) => ILeague; export declare const getLeagueByCode: (code: string) => ILeague;