mirror of
https://github.com/pengzhanbo/vuepress-theme-plume.git
synced 2026-05-01 12:38:12 +08:00
14 lines
326 B
TypeScript
14 lines
326 B
TypeScript
import type { GitPluginPageData } from '@vuepress/plugin-git'
|
|
|
|
export interface PlumeThemePageData extends GitPluginPageData {
|
|
isBlogPost: boolean
|
|
type: 'blog' | 'product'
|
|
categoryList?: PageCategoryData[]
|
|
filePathRelative: string | null
|
|
}
|
|
|
|
export interface PageCategoryData {
|
|
type: string | number
|
|
name: string
|
|
}
|