Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { Author } from "./author";
export type Post = {
title: string;
slug: string;
date: string | null;
content: string;
excerpt: string;
coverImage: string;
author: Author;
};