mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-11-28 22:54:25 -05:00
feat(frontend): ✨ Add Recipe Editor to Assign Units and Foods for Recipe Scaling
This commit is contained in:
@@ -56,15 +56,15 @@ export interface Recipe {
|
||||
name: string;
|
||||
slug: string;
|
||||
image?: unknown;
|
||||
description?: string;
|
||||
recipeCategory?: string[];
|
||||
tags?: string[];
|
||||
rating?: number;
|
||||
description: string;
|
||||
recipeCategory: string[];
|
||||
tags: string[];
|
||||
rating: number;
|
||||
dateAdded?: string;
|
||||
dateUpdated?: string;
|
||||
recipeYield?: string;
|
||||
recipeIngredient?: RecipeIngredient[];
|
||||
recipeInstructions?: RecipeStep[];
|
||||
recipeIngredient: RecipeIngredient[];
|
||||
recipeInstructions: RecipeStep[];
|
||||
nutrition?: Nutrition;
|
||||
tools?: string[];
|
||||
totalTime?: string;
|
||||
|
||||
Reference in New Issue
Block a user