15 lines
294 B
TypeScript
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
|
|
}
|