Files
Cloud-Blog/app/types/blog.ts
2025-12-26 21:56:11 +08:00

14 lines
294 B
TypeScript

export interface BlogPost {
title: string;
date: string;
description: string;
image: string;
alt: string;
ogImage: string;
tags: string[];
categories: string[];
published: boolean;
meta: Record<string, unknown>; // 添加 meta 属性
path: string; // 添加 path 属性
}