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

24 lines 546 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[]; //# sourceMappingURL=SlayerExtends.d.ts.map