growtopia-api
Version:
An unofficial Growtopia API to gather item informations, name matches, sprites and server status.
20 lines (19 loc) • 429 B
TypeScript
interface DataList {
Name: string;
URL: string;
Description?: string;
Properties?: string[];
Sprite?: string;
Color?: string[];
Rarity?: number;
Recipe?: {
type: string;
recipe: string[];
};
Splice?: string;
Info?: string;
Type?: string;
matches?: string[];
}
declare function itemInfo(nameItem: string): Promise<DataList | undefined>;
export default itemInfo;