UNPKG

osrs-tools

Version:

A comprehensive TypeScript library for Old School RuneScape (OSRS) data and utilities, including quest data, skill requirements, and game item information

12 lines (11 loc) 285 B
import { QuestDifficulty, QuestLength, QuestStatus } from "./enums"; /** * Types of recommendations for quests */ export const RecommendationType = { Item: "item", Travel: "travel", Tip: "tip", Level: "level", }; export { QuestDifficulty, QuestLength, QuestStatus };