2025-05-23 16:00:15 +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;
}