Files
mikayla-dobson-dev/server/entities/post.ts

10 lines
183 B
TypeScript

export type Post = {
name: string;
date: Date;
author: string;
description: string;
body: string;
tagIDs: string[];
media?: string[]; // array of URLs
}