7 lines
135 B
TypeScript
7 lines
135 B
TypeScript
export interface WeightData {
|
|
weight: number | null
|
|
dsd: number | null
|
|
weighedAt: string | null
|
|
type : string | null
|
|
}
|