Files
Ferme/frontend/services/dto/weight-data.ts

15 lines
294 B
TypeScript

export interface WeightData {
weight: number | null
dsd: number | null
weighedAt: string | null
type : string | null
}
export interface WeightEntryData {
id?: number
type: 'gross' | 'tare'
dsd: number | null
weight: number | null
weighedAt: string | null
}