UNPKG

@yuna0x0/anilist-node

Version:

A lightweight Node.js wrapper for the AniList API

18 lines (15 loc) 290 B
/** * An enum for list entry status * @enum {String} * @readonly */ const EntryStatus = { CURRENT: "CURRENT", PLANNING: "PLANNING", COMPLETED: "COMPLETED", DROPPED: "DROPPED", PAUSED: "PAUSED", REPEATING: "REPEATING" }; Object.freeze(EntryStatus); module.exports = EntryStatus;