18 lines
337 B
TypeScript
18 lines
337 B
TypeScript
export type Recipe = {
|
|
_type: "Recipe";
|
|
author?: {
|
|
_type: "Person";
|
|
name?: string;
|
|
};
|
|
description?: string;
|
|
image?: string;
|
|
name?: string;
|
|
recipeIngredient?: string[];
|
|
recipeInstructions?: string[];
|
|
datePublished?: string;
|
|
totalTime?: string;
|
|
recipeYield?: number;
|
|
url?: string;
|
|
keywords?: string[];
|
|
};
|