-
Notifications
You must be signed in to change notification settings - Fork 18
/
typedoc.json
76 lines (76 loc) · 1.95 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
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
{
"disableSources": false,
"entryPoints": ["./package.json", "./src/index.ts"],
"excludeExternals": false,
"excludePrivate": true,
"excludeProtected": true,
"includeVersion": true,
"out": "api-docs",
"theme": "pages-plugin",
"media": "media",
"pages": {
"groups": [
{
"title": "Getting Started",
"pages": [
{
"title": "Installation",
"source": "./docs/getting-started/installation.md"
},
{
"title": "Web service",
"source": "./docs/getting-started/web_service.md",
"children": [
{
"title": "Administration",
"source": "./docs/getting-started/admin.md"
},
{
"title": "User Routers",
"source": "./docs/getting-started/user.md"
}
]
},
{
"title": "Start Bot",
"source": "./docs/getting-started/start_bot.md"
}
]
},
{
"title": "How To",
"pages": [
{
"title": "Send Messages Options",
"source": "./docs/getting-started/send_options.md"
},
{
"title": "Send Messages",
"source": "./docs/getting-started/send_functions.md"
},
{
"title": "Profile Functions",
"source": "./docs/getting-started/profile_functions.md"
},
{
"title": "Retrieving Data",
"source": "./docs/getting-started/retrieving_data.md"
}
]
},
{
"title": "Management",
"pages": [
{
"title": "Group Management",
"source": "./docs/getting-started/group_functions.md"
},
{
"title": "Downloading Files",
"source": "./docs/getting-started/downloading_files.md"
}
]
}
]
}
}