mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-11-03 02:33:31 -05:00
feat(frontend): 🚧 groundwork for user interactive ingredient parsing
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user