UNPKG

yahoo-fantasy

Version:

An API to help facilitate the use of the Yahoo! Fantasy Sports API in NodeJS projects.

14 lines (12 loc) 580 B
import GamesCollection from "./gamesCollection.mjs"; import LeagueCollection from "./leaguesCollection.mjs"; import PlayerCollection from "./playersCollection.mjs"; import TransactionCollection from "./transactionsCollection.mjs"; import TeamCollection from "./teamsCollection.mjs"; // import UserCollection from "./UserCollection.mjs"; export { GamesCollection as Games }; export { LeagueCollection as Leagues }; export { PlayerCollection as Players }; export { TransactionCollection as Transactions }; export { TeamCollection as Teams }; // export { UserCollection as Users };