mav-api-ts
Version:
Unofficial, experimental MÁV API library based on the requests by jegy.mav.hu
5 lines (4 loc) • 318 B
TypeScript
import { type AxiosRequestConfig, type AxiosResponse } from 'axios';
import { type QueryLanguage } from '../../types/common.type';
import { type Params } from '../../types/params.type';
export declare function getParams(language?: QueryLanguage, axiosConfig?: AxiosRequestConfig<any>): Promise<AxiosResponse<Params>>;