-
-
Notifications
You must be signed in to change notification settings - Fork 633
/
types.d.ts
213 lines (181 loc) · 3.76 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
import type { Theme } from 'shiki-es'
export interface ParsedContentMeta {
/**
* Content id
*/
id: string
/**
* Content source
*/
source?: string
/**
* Content path, this path is source agnostic and it the content my live in any source
*/
path?: string
/**
* Content slug
*/
slug?: string
/**
* Content title
*/
title?: string
/**
* Content draft status
*/
draft?: boolean
/**
* Content partial status
*/
partial?: boolean
/**
* Content locale
*/
locale?: boolean
[key: string]: any
}
export interface ParsedContent extends ParsedContentMeta{
body: any
}
//
export interface MarkdownNode {
type: string
tag?: string
value?: string
props?: Record<string, any>
content?: any
children?: MarkdownNode[]
attributes?: Record<string, any>
fmAttributes?: Record<string, any>
}
export interface MarkdownHtmlNode extends MarkdownNode {
type: 'html'
value: string
}
export interface MarkdownRoot {
type: 'root'
children: MarkdownNode[]
props?: Record<string, any>
}
export interface MarkdownOptions {
/**
* Enable/Disable MDC components.
*/
mdc: boolean
toc: {
/**
* Maximum heading depth to include in the table of contents.
*/
depth: number
searchDepth: number
}
tags: Record<string, string>
remarkPlugins: Array<any | [any, any]>
rehypePlugins: Array<any | [any, any]>
}
export interface TocLink {
id: string
text: string
depth: number
children?: TocLink[]
}
export interface Toc {
title: string
depth: number
searchDepth: number
links: TocLink[]
}
export interface ContentTransformer {
name: string
extentions: string[]
parse?(id: string, content: string): Promise<ParsedContent> | ParsedContent
transform?: ((content: ParsedContent) => Promise<ParsedContent>) | ((content: ParsedContent) => ParsedContent)
}
/**
* Query
*/
export interface QueryBuilderParams {
slug: string
first: boolean
skip: number
limit: number
only: string[]
without: string[]
sortBy: Array<string[]>
where: object[]
surround: {
query: string | object
before?: number
after?: number
}
[key: string]: any
}
export interface QueryBuilder {
/**
* Select a subset of fields
*/
only(keys: string | string[]): QueryBuilder
/**
* Remove a subset of fields
*/
without(keys: string | string[]): QueryBuilder
/**
* Sort results
*/
sortBy(field: string, direction: 'asc' | 'desc'): QueryBuilder
/**
* Filter results
*/
where(query: any): QueryBuilder
/**
* Limit number of results
*/
limit(count: number): QueryBuilder
/**
* Skip number of results
*/
skip(count: number): QueryBuilder
/**
* Fetch list of contents
*/
find(): Promise<Array<ParsedContentMeta>>
/**
* Fetch first matched content
*/
findOne(): Promise<ParsedContentMeta>
/**
* Fetch sorround contents
*/
findSurround(query: string | object, options?: Partial<{ before: number; after: number }>): Promise<Array<ParsedContentMeta>>
/**
* Filter contents based on locale
*/
locale(locale: string): QueryBuilder
/**
* Retrieve query builder params
* @internal
*/
params: () => readonly QueryBuilderParams
}
export type QueryPipe<T = any> = (data: Array<T>, param: QueryBuilderParams) => Array<T> | void
export type DatabaseFetcher<T> = (params: QueryBuilderParams) => Promise<Array<T> | T>
export type QueryMatchOperator = (item: any, condition: any) => boolean
// Navigation
export interface NavItem {
title: string
slug: string
id?: string
draft?: boolean
children?: NavItem[]
[key: string]: any
}
// Highlight
export interface HighlightParams {
code: string
lang: string
theme: Theme
}
export interface HighlightThemedToken {
content: string
color?: string
}