diff --git a/src/models/Post.ts b/src/models/Post.ts index c5e7b73..80ec043 100644 --- a/src/models/Post.ts +++ b/src/models/Post.ts @@ -5,3 +5,8 @@ export type Post = { content: string; html?: string; }; + +export type Image = { + url: string; + alt?: string; +}