-
Notifications
You must be signed in to change notification settings - Fork 5
/
sidebars_clientlib.js
52 lines (52 loc) · 1.1 KB
/
sidebars_clientlib.js
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
module.exports = {
clientlib: [
{
type: "category",
label: "Client library",
collapsed: false,
items: [
"introduction",
"contributing",
],
},
{
type: "category",
collapsed: false,
label: "Getting started",
items: ["getting_started/installation", "getting_started/example_usage"],
},
{
type: "category",
collapsed: false,
label: "Developing",
items: ["develop/develop", "develop/release"],
},
{
type: "category",
label: "Guides",
collapsed: false,
items: [
"guides/intro",
"guides/create_wallet",
"guides/discover_networks",
"guides/setup_trustline",
"guides/transfer",
],
},
{
type: "category",
label: "API",
collapsed: false,
items: [
"notes_on_api",
...require("./sidebars_clientlib_api_typedoc.js"),
],
},
{
type: "link",
label: "Release Notes",
href:
"https://github.com/trustlines-protocol/clientlib/blob/master/CHANGELOG.md",
},
],
}