14 lines
281 B
TypeScript
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;
|
||
|
|
}
|