Preparing search index...

    Recipe form state containing all recipe field values

    interface RecipeFormState {
        recipeImage: string;
        recipeTitle: string;
        recipeDescription: string;
        recipeTags: tagTableElement[];
        recipePersons: number;
        recipeIngredients: (
            ingredientTableElement
            | Partial<ingredientTableElement>
        )[];
        recipePreparation: preparationStepElement[];
        recipeTime: number;
        recipeNutrition: undefined | nutritionTableElement;
        stackMode: recipeStateType;
        imgForOCR: string[];
        randomTags: string[];
    }
    Index

    Properties

    recipeImage: string
    recipeTitle: string
    recipeDescription: string
    recipeTags: tagTableElement[]
    recipePersons: number
    recipeIngredients: (ingredientTableElement | Partial<ingredientTableElement>)[]
    recipePreparation: preparationStepElement[]
    recipeTime: number
    recipeNutrition: undefined | nutritionTableElement
    stackMode: recipeStateType
    imgForOCR: string[]
    randomTags: string[]