This commit is contained in:
2025-11-26 15:17:27 +08:00
commit a8e4f56999
350 changed files with 25023 additions and 0 deletions

14
.vitepress/theme/utils/posts.data.d.ts vendored Normal file
View File

@@ -0,0 +1,14 @@
export interface PostData {
id: number
title: string
content: string
href: string
create: number
update: number
tags?: string[]
wordCount: number
cover?: string
excerpt: string
pinned?: boolean
}
export declare const data: PostData[]