Есть файл с функциями:
import type Response from "~/types/common/Response";
import type Estimate from "~/types/estimaates/Estimate";
import { EstimateClass } from "~/types/estimaates/EstimateClass";
export async function getByCode(code: string): Promise<EstimateClass> {
let url = '/api/estimates/' + code + '/';
const {data: estimate, status} = await useFetch<Response<Estimate>>(url, {
method: 'get',
responseType: 'json'
})
return EstimateClass.fromJson(estimate.value);
}
Нужно импортировать функцию getByCode под другим названием. Например, getItemByCode, как это записать?