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

10 lines 522 B
/** * Represents a location where a rumour can be found in Gielinor. * Each location has a name and a corresponding wiki URL for more information. This class is used to provide players with details about where they can find specific rumours within the guild, helping them to navigate and complete their tasks more efficiently. */ export declare class RumourLocation { readonly name: string; readonly wikiUrl: string; constructor(name: string, wikiUrl: string); } //# sourceMappingURL=RumourLocation.d.ts.map