Преглед на файлове

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[],
 }