-
Notifications
You must be signed in to change notification settings - Fork 6
/
types.d.ts
69 lines (64 loc) · 1.24 KB
/
types.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
export interface UserConfig {
title: string;
description: string;
url: string;
rootCrumb: string;
authorName: string;
authorEmail: string;
authorUrl: string;
codeHighlight: boolean;
lang: Intl.LocalesArgument;
head: string;
}
export interface BuildConfig {
inputPath: string;
outputPath: string;
userConfigPath: string;
ignoreKeys: string[];
staticExts: string[];
userConfig: UserConfig;
renderDrafts: boolean;
}
export interface Crumb {
slug: string;
url: string;
current: boolean;
isTag?: boolean;
}
export interface Heading {
text: string;
level: number;
slug: string;
}
export interface Page {
url: URL;
title?: string;
description?: string;
attrs?: JSONValue;
datePublished?: Date;
dateUpdated?: Date;
tags?: string[];
body?: string;
html?: string;
links?: URL[];
headings?: Heading[];
index?: "dir" | "tag";
layout?: "log" | "grid" | "list";
thumbnailUrl?: URL;
pinned: boolean;
ignored: boolean;
unlisted: boolean;
showHeader: boolean;
showToc: boolean;
showTitle: boolean;
showMeta: boolean;
showDescription: boolean;
}
export interface JSONValue {
[key: string]:
| string
| number
| boolean
| { [key: string]: JSONValue }
| Array<JSONValue>;
}