File tree Expand file tree Collapse file tree 3 files changed +21
-2
lines changed
packages/neos-api/src/typings Expand file tree Collapse file tree 3 files changed +21
-2
lines changed Original file line number Diff line number Diff line change @@ -15,4 +15,4 @@ node_modules
15
15
packages /* /dist
16
16
/parcel-bundle-reports
17
17
* .d.ts
18
- ! . global.d.ts
18
+ ! global.d.ts
Original file line number Diff line number Diff line change
1
+ type SearchNodeResult = {
2
+ name : string ;
3
+ nodetype : string ;
4
+ contextPath : string ;
5
+ icon : string ;
6
+ uri : string ;
7
+ } ;
8
+
9
+ // The settings read from the `Neos.Neos.Ui.frontendConfiguration["Shel.Neos.CommandBar:CommandBar"]` configuration
10
+ type CommandBarConfig = {
11
+ enabled : boolean ;
12
+ features : {
13
+ searchNeosDocs : boolean ;
14
+ searchNeosPackages : boolean ;
15
+ } ;
16
+ hotkeys : {
17
+ filter : string [ ] ;
18
+ } ;
19
+ } ;
Original file line number Diff line number Diff line change 13
13
"name" : " typescript-plugin-css-modules"
14
14
}
15
15
],
16
- "typeRoots" : [" ./packages/commandbar/src/typings" ]
16
+ "typeRoots" : [" ./packages/commandbar/src/typings" , " ./packages/neos-api/src/typings " ]
17
17
},
18
18
"exclude" : [
19
19
" node_modules" ,
You can’t perform that action at this time.
0 commit comments