sg-delivery-customer/app/api/paymentMethodsApi.ts

7 lines
225 B
TypeScript

import { PaymentMethodsResponse } from '@interfaces';
import { apiClient } from '@services';
export const getAllPaymentMethodsApi = async () => {
return await apiClient.get<PaymentMethodsResponse>('/payments/options');
};