genshin-db
Version:
Genshin Impact v6.6 JSON data. Search and get results in all in-game languages! Sources from the fandom wiki and GenshinData repo.
18 lines (16 loc) • 493 B
TypeScript
declare module "genshin-db" {
export interface Animal {
id: number; // archive id
name: string;
dupealias?: string; // Vietnamese Vịt
description: string;
categoryType: 'SUBTYPE_ANIMAL' | 'SUBTYPE_AVIARY' | 'SUBTYPE_CRITTER' | 'SUBTYPE_FISH'; // enum
categoryText: string; // translated
countType: 'COUNT_TYPE_CAPTURE' | 'COUNT_TYPE_FISH' | 'COUNT_TYPE_NONE'; // enum
sortOrder: number;
images: {
filename_icon: string;
};
version: string;
}
}