13 lines
297 B
TypeScript
13 lines
297 B
TypeScript
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,
|
|
};
|
|
}
|