mirror of
https://github.com/rjNemo/meal_planner
synced 2026-06-06 02:26:49 +00:00
9 lines
200 B
TypeScript
9 lines
200 B
TypeScript
export type Recipe = {
|
|
title: string;
|
|
pictureUrl: string;
|
|
videoUrl: string;
|
|
category: string;
|
|
origin: string;
|
|
ingredients: { name: string; quantity: number }[];
|
|
instructions: string;
|
|
};
|