12 lines
No EOL
247 B
TypeScript
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
|
|
|
|
} |