UNPKG

growtopia-api

Version:

An unofficial Growtopia API to gather item informations, name matches, sprites and server status.

7 lines (6 loc) 161 B
interface SearchItem { itemName: string; url: string; } declare function searchItem(itemName: string): Promise<SearchItem[]>; export default searchItem;