File tree 4 files changed +36
-9
lines changed
packages/@vuepress/types/src
4 files changed +36
-9
lines changed Original file line number Diff line number Diff line change 1
1
import { PostCssLoaderOptions } from "./style" ;
2
2
import { MarkdownConfig } from "./markdown" ;
3
- import { LocaleConfig } from "./locale" ;
3
+ import { Locales } from "./locale" ;
4
4
import { ThemeConfig } from "./theme" ;
5
5
import { UserPlugins } from "./plugin" ;
6
6
import { Context } from "./context" ;
7
7
import { ChainWebpack } from "./shared" ;
8
8
9
+
9
10
/**
10
11
* HTML tag name
11
12
*/
12
13
export type HTMLTagName = keyof HTMLElementTagNameMap ;
13
14
15
+ /**
16
+ * Expose `HeadTags`
17
+ */
18
+ export type HeadTags = Array <
19
+ [
20
+ HTMLTagName ,
21
+ Partial < HTMLElementTagNameMap [ HTMLTagName ] > ,
22
+ string ? /* innerHTML */
23
+ ]
24
+ > ;
25
+
14
26
/**
15
27
* Expose `VuePress` config.
16
28
*/
@@ -39,13 +51,7 @@ export interface Config<T extends ThemeConfig> {
39
51
*
40
52
* @see https://vuepress.vuejs.org/config/#head
41
53
*/
42
- head ?: Array <
43
- [
44
- HTMLTagName ,
45
- Partial < HTMLElementTagNameMap [ HTMLTagName ] > ,
46
- string ? /* innerHTML */
47
- ]
48
- > ;
54
+ head ?: HeadTags ;
49
55
/**
50
56
* Specify the host to use for the dev server.
51
57
*
@@ -77,7 +83,7 @@ export interface Config<T extends ThemeConfig> {
77
83
*
78
84
* @see https://vuepress.vuejs.org/config/#locales
79
85
*/
80
- locales ?: { [ path : string ] : LocaleConfig } ;
86
+ locales ?: Locales ;
81
87
/**
82
88
* A function to control what files should have <link rel="prefetch"> resource hints generated.
83
89
*
Original file line number Diff line number Diff line change 1
1
import { ThemeConfig } from "./theme" ;
2
2
import { Config } from "./config" ;
3
3
import { Lang } from "./lang" ;
4
+ import { SiteData } from "./site-data" ;
4
5
5
6
/**
6
7
* Page instance.
@@ -173,4 +174,8 @@ export interface Context<
173
174
* Theme API.
174
175
*/
175
176
themeAPI : ThemeAPI ;
177
+ /**
178
+ * Get site data.
179
+ */
180
+ getSiteData ( ) : SiteData ;
176
181
}
Original file line number Diff line number Diff line change @@ -16,3 +16,5 @@ export interface LocaleConfig {
16
16
*/
17
17
description : string ;
18
18
}
19
+
20
+ export type Locales = { [ path : string ] : LocaleConfig } ;
Original file line number Diff line number Diff line change
1
+ import { Page } from "./context" ;
2
+ import { ThemeConfig } from "./theme" ;
3
+ import { Locales } from "./locale" ;
4
+ import { HeadTags } from "./config" ;
5
+
6
+ export interface SiteData < T extends ThemeConfig = ThemeConfig > {
7
+ title : string ;
8
+ description : string ;
9
+ base : string ;
10
+ pages : Page [ ] ;
11
+ headTags : HeadTags ;
12
+ themeConfig : T ;
13
+ locales : Locales ;
14
+ }
You can’t perform that action at this time.
0 commit comments