-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathsidebar.ts
73 lines (72 loc) · 1.61 KB
/
sidebar.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
import type { NSSidebarItem } from '@nativescript/vitepress-theme'
export default [
{
text: 'Commonly Used APIs',
link: '/core/',
hideChildren: true,
items: [
{
text: '@nativescript/core',
link: '/core/#nativescript-core',
items: [
{
text: 'Application',
link: '/core/application',
},
{
text: 'ApplicationSettings',
link: '/core/application-settings',
},
{
text: 'Color',
link: '/core/color',
},
{
text: 'Connectivity',
link: '/core/connectivity',
},
{
text: 'Device',
link: '/core/device',
},
{
text: 'FileSystem',
link: '/core/file-system',
},
{
text: 'FPS Meter',
link: '/core/fps-meter',
},
{
text: 'Http',
link: '/core/http',
},
{
text: 'ImageCache',
link: '/core/image-cache',
},
{
text: 'Observable',
link: '/core/observable',
},
{
text: 'Screen',
link: '/core/screen',
},
{
text: 'Trace',
link: '/core/tracing',
},
{
text: 'Utils',
link: '/core/utils',
},
{
text: 'XmlParser',
link: '/core/xml-parser',
},
],
} as NSSidebarItem,
],
},
] as NSSidebarItem[]