Files
solo-company-feed/types/post.ts
2026-03-19 20:17:56 +08:00

14 lines
227 B
TypeScript

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