Jamjar/src/types/PostType.ts
2025-01-21 03:15:02 -05:00

13 lines
249 B
TypeScript

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