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) 371 B
import { IHoyolabOptions } from '../hoyolab'; export declare enum HsrRegion { USA = "prod_official_usa", EUROPE = "prod_official_eur", ASIA = "prod_official_asia", CHINA_TAIWAN = "prod_official_cht" } export type HsrRegionKeyType = keyof typeof HsrRegion; export interface IHsrOptions extends IHoyolabOptions { uid?: number; region?: HsrRegion; }