Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
export type User = {
name: string;
picture: string;
sub: string;
email?: string;
};
export type Comment = {
id: string;
created_at: number;
url: string;
text: string;
user: User;
};
export type Post = {
slug?: string;
title?: string;
author?: string;
date?: Date;
content?: string;
excerpt?: string;
[key: string]: any;
};