PinnovateCloud/types/content.ts
2025-09-11 10:55:59 +08:00

14 lines
281 B
TypeScript

// 文章类型接口
export type Article = {
_path?: string;
path?: string;
title: string;
description: string;
category: string;
date: string;
views: number;
featured?: boolean;
trending?: boolean;
author?: string;
image?: string;
}