Files
tiramisu/src/cookbook/type.ts
2024-06-14 14:38:50 +02:00

19 lines
291 B
TypeScript

export type Ingredient = {
id: number;
name: string;
};
export type Recipe = {
id: number;
name: string;
description: string;
image: string;
ingredients: IngredientEntry[];
};
export type IngredientEntry = {
idIngredient: number;
idRecipe: number;
quantity: number;
};