-
Notifications
You must be signed in to change notification settings - Fork 7
/
typedoc.json
48 lines (48 loc) · 1.17 KB
/
typedoc.json
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
{
"tsconfig": "iina/tsconfig.json",
"name": "IINA Plugin API",
"sort": ["source-order"],
"categorizeByGroup": false,
"customCss": "pages/style.css",
"media": "pages/media",
"navigationLinks": {
"IINA Home": "https://iina.io",
"GitHub": "https://github.com/iina/iina"
},
"pluginPages": {
"pages": [
{
"title": "IINA Plugin API",
"moduleRoot": true,
"source": "index.md",
"children": [
{
"title": "Getting Started",
"source": "getting-started.md"
},
{ "title": "Creating Plugins", "source": "creating-plugins.md" },
{
"title": "Development Guide",
"source": "dev-guide.md"
},
{
"title": "Global Entry Point",
"source": "global-entry.md"
},
{
"title": "Web Views",
"source": "webviews.md"
},
{
"title": "Subtitle Providers",
"source": "subtitle-providers.md"
},
{
"title": "Plugin Preferences",
"source": "plugin-preferences.md"
}
]
}
]
}
}