Files
solo-company-feed/types/post.ts
爱喝水的木子 bfdf4843e1 OPC
2026-03-13 16:28:51 +08:00

13 lines
208 B
TypeScript

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