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:
parent
f8c2f760bd
commit
0f6f81eb27
5 changed files with 129 additions and 9 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue