import { LeadDetailsItem } from '@interfaces'; import { api } from '@utils'; export const getLeadDetailsApi = async ( leadId: string, staffId: string, ): Promise => { const url = `/api/leads/${leadId}/${staffId}`; return await api.get(url); };