Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import type 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;