added basic ingredient editor

This commit is contained in:
vabene1111
2022-04-14 13:01:27 +02:00
parent 2ee96c2ea4
commit 7befa4a084
10 changed files with 381 additions and 98 deletions

View File

@@ -472,7 +472,7 @@ export interface FoodRecipe {
* @type {string}
* @memberof FoodRecipe
*/
name?: string;
name: string;
/**
*
* @type {string}
@@ -537,7 +537,7 @@ export interface FoodSubstitute {
* @type {string}
* @memberof FoodSubstitute
*/
name?: string;
name: string;
}
/**
*
@@ -746,6 +746,12 @@ export interface Ingredient {
* @memberof Ingredient
*/
no_amount?: boolean;
/**
*
* @type {string}
* @memberof Ingredient
*/
original_text?: string | null;
}
/**
*
@@ -1905,6 +1911,12 @@ export interface RecipeIngredients {
* @memberof RecipeIngredients
*/
no_amount?: boolean;
/**
*
* @type {string}
* @memberof RecipeIngredients
*/
original_text?: string | null;
}
/**
*
@@ -2173,7 +2185,7 @@ export interface RecipeSimple {
* @type {string}
* @memberof RecipeSimple
*/
name?: string;
name: string;
/**
*
* @type {string}