Преглед изворни кода

Add notes property to Ingredient Model

Tatiana Inama пре 6 година
родитељ
комит
76d74e1276
1 измењених фајлова са 1 додато и 0 уклоњено
  1. 1 0
      recipes/src/types/recipes.ts

+ 1 - 0
recipes/src/types/recipes.ts

@@ -3,6 +3,7 @@ export interface Ingredient {
   quantity: number,
   unit: string,
   _original: string,
+  notes?: string,
   suggestions?: Suggestion[],
 }