Jamjar/src/types/PostType.ts
2025-01-22 19:50:08 -05:00

14 lines
265 B
TypeScript

import { TagType } from "./TagType";
import { UserType } from "./UserType";
export interface PostType {
id: number;
slug: string;
title: string;
content: string;
author: UserType;
createdAt: Date;
tags: TagType[];
likes: [];
hasLiked: boolean;
}