changed source import to match field structure of recipe model

first imports working
This commit is contained in:
vabene1111
2022-02-19 17:54:00 +01:00
parent 89348f69f1
commit c8fc67fa2b
8 changed files with 138 additions and 345 deletions

View File

@ -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;
}
/**
*