forked from chapter-three/next-drupal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.ts
92 lines (80 loc) · 1.39 KB
/
index.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
import { MdxNode } from "next-mdx"
declare global {
interface Window {
/* eslint-disable @typescript-eslint/no-explicit-any */
docsearch: any
}
}
export interface MdxComponents {
[name: string]: React.ReactNode
}
export type Doc = MdxNode<{
title: string
excerpt?: string
}>
export type Blog = MdxNode<{
title: string
published: boolean
excerpt?: string
date?: string
author?: string
}>
export type Guide = MdxNode<{
title?: string
date?: string
excerpt?: string
author?: string
image?: string
caption?: string
externalUrl?: string
}>
export type Tutorial = MdxNode<{
title: string
excerpt?: string
weight?: number
group?: string
video?: string
}>
export type Feature = MdxNode<{
title: string
excerpt?: string
weight?: number
}>
export type NavLink = {
title: string
external?: boolean
activePathNames?: string[]
badge?: string
} & (
| {
href: string
items?: never
}
| {
href?: string
items: NavLink[]
}
)
export type NavLinks = NavLink[]
export interface SiteConfig {
name: string
description?: string
copyright?: string
links: NavLinks
social: {
github?: string
twitter?: string
contact?: string
}
versions: {
version: string
url?: string
active?: boolean
}[]
}
export interface DocsConfig {
links: NavLinks
}
export interface GuidesConfig {
links: NavLinks
}