瀏覽代碼

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