AbdulElahGwaith's picture
Upload folder using huggingface_hub
b91e262 verified
import Author from "./author";
import Picture from "./picture";
type Post = {
id: string;
slug: string;
title: string;
coverImage: Picture;
date: string;
author: Author;
excerpt: string;
content: string;
tags: string[];
};
export default Post;