UNPKG

mav-api-ts

Version:

Unofficial, experimental MÁV API library based on the requests by jegy.mav.hu

5 lines (4 loc) 378 B
import { type AxiosRequestConfig, type AxiosResponse } from 'axios'; import { type QueryLanguage } from '../../types/common.type'; import { type CustomersAndDiscounts } from '../../types/customersAndDiscounts.type'; export declare function getCustomersAndDiscounts(language?: QueryLanguage, axiosConfig?: AxiosRequestConfig<any>): Promise<AxiosResponse<CustomersAndDiscounts>>;