mirror of
https://github.com/fergalmoran/supanextail.git
synced 2025-12-22 09:17:54 +00:00
17 lines
241 B
TypeScript
17 lines
241 B
TypeScript
import Author from './author';
|
|
|
|
type PostType = {
|
|
slug: string;
|
|
title: string;
|
|
date: string;
|
|
coverImage: string;
|
|
author: Author;
|
|
excerpt: string;
|
|
ogImage: {
|
|
url: string;
|
|
};
|
|
content: string;
|
|
};
|
|
|
|
export default PostType;
|