osrs-tools
Version:
A comprehensive TypeScript library for Old School RuneScape (OSRS) data and utilities, including quest data, skill requirements, and game item information
35 lines • 831 B
TypeScript
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 declare const SlayerRewards: SlayerUnlock[];
export { SlayerBuy, SlayerExtend, SlayerReward, SlayerUnlock };
//# sourceMappingURL=SlayerReward.d.ts.map