UNPKG

osrs-hiscores-parser

Version:

Package that parses and transforms Old School Runescape Hiscore API results into a JSON object.

9 lines (8 loc) 220 B
/** * @param usernames - rsn of the user or users * @returns An array containing an object for each user */ export declare function parser(usernames: string[]): Promise<{ name: string; data: any[]; }[]>;