regenerate API

This commit is contained in:
smilerz
2024-04-23 10:35:45 -05:00
parent dd3f38fe75
commit a67b084b52
61 changed files with 7120 additions and 5452 deletions

View File

@@ -52,16 +52,16 @@ export interface Ingredient {
unit: Unit | null;
/**
*
* @type {string}
* @type {number}
* @memberof Ingredient
*/
amount: string;
amount: number;
/**
*
* @type {string}
* @type {Array<any>}
* @memberof Ingredient
*/
readonly conversions: string;
readonly conversions: Array<any>;
/**
*
* @type {string}
@@ -94,10 +94,10 @@ export interface Ingredient {
originalText?: string;
/**
*
* @type {string}
* @type {Array<any>}
* @memberof Ingredient
*/
readonly usedInRecipes: string;
readonly usedInRecipes: Array<any>;
/**
*
* @type {boolean}