recipe-app/frontend/src/models/ServingsModel.ts
2025-10-07 20:53:31 +02:00

12 lines
No EOL
247 B
TypeScript

/**
* Defines how many servings of the dish are prepared when following the recipe
*/
export interface ServingsModel{
/** Amount of servings */
amount: number,
/** Unit, e.g. 4 persons, 2 glasses, 12 cupcakes */
unit: string
}