import type { PaymentSchedule } from '@entities' import type { HttpClient } from '@services' import type { ApiError, Response } from '@types' const getPaymentSchedules = (http: HttpClient) => ({ query: (): Promise> => { return http.get('v3/admin/payment_schedules') }, }) export default getPaymentSchedules