Bladeren bron

Add notes property to Ingredient Model

Tatiana Inama 6 jaren geleden
bovenliggende
commit
76d74e1276
1 gewijzigde bestanden met toevoegingen van 1 en 0 verwijderingen
  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[],
 }