Ver código fonte

Add notes property to Ingredient Model

Tatiana Inama 6 anos atrás
pai
commit
76d74e1276
1 arquivos alterados com 1 adições e 0 exclusões
  1. 1 0
      recipes/src/types/recipes.ts

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

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