import type { Row } from '@/Components/Calculation/Form/ELT/types'; import { defaultRow } from '@/stores/tables/elt/default-values'; export function resetRow(row: Row): Row { return { ...defaultRow, id: row.id, key: row.key, metodCalc: row.metodCalc, name: row.name, }; }