progress: work on inner section of recipe create function

This commit is contained in:
Mikayla Dobson
2023-02-25 21:13:43 -06:00
parent 8a939e6a81
commit 2754fe6c09
4 changed files with 64 additions and 22 deletions

View File

@@ -47,6 +47,8 @@ export interface IIngredient extends HasHistory {
export interface RecipeIngredient extends Partial<IIngredient> {
unit: string
quantity: string | number
ingredientid: string | number
recipeid: string | number
}
export interface ICollection extends HasHistory, CanDeactivate {