import { CustomerResponse, WalletResponse } from '@interfaces'; import { apiClient } from '@services'; export const getCustomerDetails = async () => { return await apiClient.get('/customers/profile'); }; export const getWalletDetails = async (): Promise => { return await apiClient.get('/wallets/balance'); };