wf4/shared/types/Blog.ts
webfussel 427d9ae276 add: Preparation for external posts
Preparation for external blog posts
2025-07-11 13:32:59 +02:00

19 lines
No EOL
239 B
TypeScript

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