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