UNPKG

hoyoapi

Version:

HoYoAPI is an unofficial API Wrapper library developed to facilitate communication with the official HoYoLab API.

10 lines (9 loc) 263 B
import { HTTPBody, HTTPHeaders, HTTPQueryParams, HTTPResponse } from '../request'; export interface IHTTPError { response?: HTTPResponse | string; request?: { body: HTTPBody; params: HTTPQueryParams; headers: HTTPHeaders; }; }