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