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

13 lines 445 B
import { Npc } from "../Npc"; /** * Complete example of an NPC built from OSRS wiki data. * This is based on the Abyssal Demon wiki page: * https://oldschool.runescape.wiki/w/Abyssal_demon */ export declare const createAbyssalDemon: () => Npc; /** * Alternative syntax - more concise */ export declare const createAbyssalDemonAlternative: () => Npc; export declare const abyssalDemon: Npc; //# sourceMappingURL=AbyssalDemonExample.d.ts.map