UNPKG

@genshin-kit/core

Version:

An API wrapper for fetching player data of Genshin Impact from any servers.

11 lines (10 loc) 375 B
import { AppServerLocale } from '../types'; interface GachaInfoI18nData { item_id: string; name: string; item_type: string; rank_type: '3' | '4' | '5'; } export declare function getAllIds(lang?: AppServerLocale): Promise<GachaInfoI18nData[]>; export declare function getCharacterIds(lang?: AppServerLocale): Promise<GachaInfoI18nData[]>; export {};