1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-07-23 07:09:41 +02:00

feat(frontend): 🚧 groundwork for user interactive ingredient parsing

This commit is contained in:
hay-kot 2021-08-28 14:14:21 -08:00
parent f8c2f760bd
commit 0f6f81eb27
5 changed files with 129 additions and 9 deletions

View file

@ -80,12 +80,12 @@ export interface Recipe {
comments?: CommentOut[];
}
export interface RecipeIngredient {
title?: string;
note?: string;
unit?: RecipeIngredientUnit;
food?: RecipeIngredientFood;
disableAmount?: boolean;
quantity?: number;
title: string;
note: string;
unit: RecipeIngredientUnit;
food: RecipeIngredientFood;
disableAmount: boolean;
quantity: number;
}
export interface RecipeIngredientUnit {
name?: string;