This commit is contained in:
爱喝水的木子
2026-03-13 16:28:51 +08:00
commit bfdf4843e1
38 changed files with 9490 additions and 0 deletions

12
types/post.ts Normal file
View File

@@ -0,0 +1,12 @@
export type Post = {
_id?: string;
title: string;
slug: string;
markdown: string;
cover?: string;
tags?: string[];
author: string;
createdAt: string;
updatedAt: string;
views?: number;
};