Explorar el Código

Add notes property to Ingredient Model

Tatiana Inama hace 6 años
padre
commit
76d74e1276
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  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[],
 }