Preparing search index...

    Interface RecipeValidationData

    Data required for recipe validation

    interface RecipeValidationData {
        recipeImage: string;
        recipeTitle: string;
        recipeIngredients: (
            ingredientTableElement
            | Partial<ingredientTableElement>
        )[];
        recipePreparation: preparationStepElement[];
        recipePersons: number;
        recipeTime: number;
        recipeNutrition: undefined | nutritionTableElement;
    }
    Index

    Properties

    recipeImage: string
    recipeTitle: string
    recipeIngredients: (ingredientTableElement | Partial<ingredientTableElement>)[]
    recipePreparation: preparationStepElement[]
    recipePersons: number
    recipeTime: number
    recipeNutrition: undefined | nutritionTableElement