import { Report, ReportFieldValues } from "@/data/report"; import { axios } from "@/api/index"; const REPORT_SAVE_ENDPOINT = "/internship/report" export async function save(report: Report) { await axios.post(REPORT_SAVE_ENDPOINT, report.fields); }