import api from "./client"; export const ExpenseItemApi = { getAll(params) { return api.get(`/expense-item/`, { params }).then((r) => r.data); }, };