mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-02 20:59:28 -05:00
added some cooklog stuff
This commit is contained in:
@@ -61,13 +61,7 @@ export interface RecipeStepsInner {
|
||||
* @type {string}
|
||||
* @memberof RecipeStepsInner
|
||||
*/
|
||||
readonly ingredientsMarkdown?: string;
|
||||
/**
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof RecipeStepsInner
|
||||
*/
|
||||
readonly ingredientsVue?: string;
|
||||
readonly instructionsMarkdown?: string;
|
||||
/**
|
||||
*
|
||||
* @type {number}
|
||||
@@ -142,8 +136,7 @@ export function RecipeStepsInnerFromJSONTyped(json: any, ignoreDiscriminator: bo
|
||||
'name': !exists(json, 'name') ? undefined : json['name'],
|
||||
'instruction': !exists(json, 'instruction') ? undefined : json['instruction'],
|
||||
'ingredients': ((json['ingredients'] as Array<any>).map(RecipeStepsInnerIngredientsInnerFromJSON)),
|
||||
'ingredientsMarkdown': !exists(json, 'ingredients_markdown') ? undefined : json['ingredients_markdown'],
|
||||
'ingredientsVue': !exists(json, 'ingredients_vue') ? undefined : json['ingredients_vue'],
|
||||
'instructionsMarkdown': !exists(json, 'instructions_markdown') ? undefined : json['instructions_markdown'],
|
||||
'time': !exists(json, 'time') ? undefined : json['time'],
|
||||
'order': !exists(json, 'order') ? undefined : json['order'],
|
||||
'showAsHeader': !exists(json, 'show_as_header') ? undefined : json['show_as_header'],
|
||||
|
||||
Reference in New Issue
Block a user