6 lines
110 B
TypeScript
6 lines
110 B
TypeScript
export interface WeightData {
|
|
weight: number | null
|
|
dsd: number | null
|
|
weighedAt: string | null
|
|
}
|