blog/.vitepress/posts.data.d.ts
2025-03-28 23:22:10 +08:00

11 lines
207 B
TypeScript

export interface PostData {
title: string,
href: string,
create: number,
update: number,
tags?: string[],
cover?: string,
excerpt: string,
}
export declare const data: PostData[]