mirror of https://github.com/vuejs/vitepress
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.3 KiB
64 lines
1.3 KiB
// types shared between server and client
|
|
|
|
export interface LocaleConfig {
|
|
lang: string
|
|
title?: string
|
|
description?: string
|
|
head?: HeadConfig[]
|
|
label?: string
|
|
selectText?: string
|
|
}
|
|
|
|
export interface SiteData<ThemeConfig = any> {
|
|
base: string
|
|
/**
|
|
* Language of the site as it should be set on the `html` element.
|
|
* @example `en-US`, `zh-CN`
|
|
*/
|
|
lang: string
|
|
title: string
|
|
description: string
|
|
head: HeadConfig[]
|
|
themeConfig: ThemeConfig
|
|
locales: Record<string, LocaleConfig>
|
|
/**
|
|
* Available locales for the site when it has defined `locales` in its
|
|
* `themeConfig`. This object is otherwise empty. Keys are paths like `/` or
|
|
* `/zh/`.
|
|
*/
|
|
langs: Record<
|
|
string,
|
|
{
|
|
/**
|
|
* Lang attribute as set on the `<html>` element.
|
|
* @example `en-US`, `zh-CN`
|
|
*/
|
|
lang: string
|
|
/**
|
|
* Label to display in the language menu.
|
|
* @example `English`, `简体中文`
|
|
*/
|
|
label: string
|
|
}
|
|
>
|
|
}
|
|
|
|
export type HeadConfig =
|
|
| [string, Record<string, string>]
|
|
| [string, Record<string, string>, string]
|
|
|
|
export interface PageData {
|
|
relativePath: string
|
|
title: string
|
|
description: string
|
|
headers: Header[]
|
|
frontmatter: Record<string, any>
|
|
lastUpdated: number
|
|
}
|
|
|
|
export interface Header {
|
|
level: number
|
|
title: string
|
|
slug: string
|
|
}
|