Files
blog/src/types/post.ts
2026-07-10 20:07:24 +08:00

11 lines
177 B
TypeScript

export type Post = {
title: string;
summary: string;
slug: string;
cover: string;
category_name: string;
published_at: string;
view: number;
content: string;
}