UNPKG

@yuna0x0/anilist-node

Version:

A lightweight Node.js wrapper for the AniList API

16 lines (13 loc) 237 B
/** * An enum for media seasons * @enum {String} * @readonly */ const MediaSeason = { WINTER: "WINTER", SPRING: "SPRING", SUMMER: "SUMMER", FALL: "FALL" }; Object.freeze(MediaSeason); module.exports = MediaSeason;