Files
solo-company-feed/types/post.ts

15 lines
247 B
TypeScript

export type Post = {
_id?: string;
title: string;
slug: string;
markdown: string;
cover?: string;
tags?: string[];
signal?: string;
author: string;
ownerId?: string;
createdAt: string;
updatedAt: string;
views?: number;
};