mirror of
https://github.com/Ategon/Jamjar.git
synced 2025-02-12 06:16:21 +00:00
14 lines
265 B
TypeScript
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;
|
|
}
|