/** * MLB-specific types for fantasy baseball * @module */ /** * Roster positions */ export type RosterPosition = string; /** * Player positions */ export type PlayerPosition = string; /** * Position type for roster requirements */ export type PositionType = string; /** * Player injury status */ export type InjuryStatus = string; /** * Stat IDs used by Yahoo */ export type StatId = keyof typeof StatIdMap; export type StatName = (typeof StatIdMap)[keyof typeof StatIdMap]['name']; export type StatAbbrev = (typeof StatIdMap)[keyof typeof StatIdMap]['abbrev']; /** * Mapping of stat IDs to their names and abbreviations */ export declare const StatIdMap: { readonly 0: { readonly name: "StatName"; readonly abbrev: "StatAbbrev"; }; }; export declare const StatEnum: Record<"StatName" | "StatAbbrev", number>; export declare const TeamKeyMappings: { teamKey: string; teamFullName: string; teamAbbr: string; }[]; //# sourceMappingURL=mlb.d.ts.map