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 }