UNPKG

node-hoyolab

Version:

node-hoyolab is an unofficial API Wrapper library developed to integrate with the Hoyolab, which provides a more convenient way to access the Hoyolab API.

13 lines (12 loc) 342 B
import { IHoyolabOptions } from '../hoyolab'; export declare enum ZZZRegion { USA = "prod_gf_jp", EUROPE = "prod_gf_eu", ASIA = "prod_gf_jp", CHINA_TAIWAN = "prod_gf_cht" } export type ZZZRegionKeyType = keyof typeof ZZZRegion; export interface ZZZOptions extends IHoyolabOptions { uid?: number; region?: ZZZRegion; }