-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathsidebars.js
52 lines (52 loc) · 1.43 KB
/
sidebars.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 = {
visionSidebar: {
Guides: [
'guides/getting-started',
'guides/devices',
'guides/lifecycle',
'guides/formats',
'guides/preview',
'guides/taking-photos',
'guides/recording-videos',
'guides/code-scanning',
{
type: 'category',
label: 'Realtime Frame Processing',
items: [
'guides/frame-processors',
'guides/frame-processors-interacting',
'guides/frame-processor-plugins-community',
'guides/pixel-formats',
'guides/frame-processors-tips',
'guides/skia-frame-processors',
{
type: 'category',
label: 'Creating Frame Processor Plugins',
items: [
'guides/frame-processors-plugins-overview',
'guides/frame-processors-plugins-ios',
'guides/frame-processors-plugins-android',
'guides/frame-processors-plugins-cpp',
'guides/frame-processors-plugins-final',
]
},
]
},
'guides/zooming',
'guides/focusing',
'guides/orientation',
'guides/exposure',
'guides/hdr',
'guides/stabilization',
'guides/location',
'guides/performance',
'guides/errors',
'guides/mocking',
'guides/troubleshooting',
'guides/shadowlens',
],
API: [
...require('./docs/api/typedoc-sidebar.cjs')
]
},
}