wf4/shared/types/Blog.ts
webfussel 5681454b61 fix: og-image => thumbnail
renamed og-image to thumbnail for external blog posts
2025-07-17 13:39:38 +02:00

20 lines
No EOL
266 B
TypeScript

export type Post = {
url: string
title: string
excerpt: string
date: string
thumbnail: string
}
type Author = {
name: string
img: string
img1x: string
img2x: string
img3x: string
}
export type ExternalPost = {
author: Author
posts: Post[]
}