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

24 lines (23 loc) 504 B
export declare class SlayerExtend { name: string; cost: number; notes: string; constructor({ cost, name, notes, }: { name: string; cost: number; notes: string; }); /** * Get the name of the Slayer Extend */ getName(): string; /** * Get the cost of the Slayer Extend */ getCost(): number; /** * Get the notes of the Slayer Extend */ getNotes(): string; } export declare const SlayerExtends: SlayerExtend[];