Bläddra i källkod

Add notes property to Ingredient Model

Tatiana Inama 6 år sedan
förälder
incheckning
76d74e1276
1 ändrade filer med 1 tillägg och 0 borttagningar
  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[],
 }