UNPKG

osrs-tools

Version:

A JavaScript package to provide JSON data for all current Old School RuneScape quests. This package aims to help junior software developers create tools related to Old School RuneScape. It's a work in progress, and issues should be reported to jamescer@ha

11 lines (10 loc) 385 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.QuestStatus = void 0; var QuestStatus; (function (QuestStatus) { QuestStatus["NotStarted"] = "NotStarted"; QuestStatus["InProgress"] = "InProgress"; QuestStatus["Completed"] = "Completed"; QuestStatus["Failed"] = "Failed"; })(QuestStatus || (exports.QuestStatus = QuestStatus = {}));