UNPKG

@yuna0x0/anilist-node

Version:

A lightweight Node.js wrapper for the AniList API

14 lines (11 loc) 184 B
/** * An enum for media types * @enum {String} * @readonly */ const MediaType = { ANIME: "ANIME", MANGA: "MANGA" }; Object.freeze(MediaType); module.exports = MediaType;