forked from wppconnect-team/wppconnect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
typedoc.json
40 lines (40 loc) · 1 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
{
"disableSources": true,
"entryPoints": "src/index.ts",
"excludeExternals": true,
"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": "Creating a Client",
"source": "./docs/getting-started/creating-client.md"
},
{
"title": "Receiving Messages",
"source": "./docs/getting-started/receiving-messages.md"
},
{
"title": "Configuring the logger",
"source": "./docs/getting-started/configuring-logger.md"
},
{
"title": "Basic Functions",
"source": "./docs/getting-started/basic-functions.md"
}
]
}
]
}
}