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

34 lines (33 loc) 740 B
declare class SlayerUnlock { name: string; cost: number; description: string; constructor({ cost, description, name, }: { name: string; cost: number; description: string; }); } declare class SlayerExtend { name: string; cost: number; notes: string; constructor({ cost, name, notes, }: { name: string; cost: number; notes: string; }); } declare class SlayerBuy { item: string; priceSoldAt: number; notes: string; constructor({ item, notes, priceSoldAt, }: { item: string; priceSoldAt: number; notes: string; }); } declare class SlayerReward { } export { SlayerBuy, SlayerExtend, SlayerReward, SlayerUnlock };