@@ -71,7 +71,9 @@ function getSelectAll(): MenuItemConstructorOptions {
71
71
} ;
72
72
}
73
73
74
- function getSearchAttributions ( webContents : Electron . WebContents ) {
74
+ function getSearchAttributions (
75
+ webContents : Electron . WebContents ,
76
+ ) : MenuItemConstructorOptions {
75
77
return {
76
78
icon : getIconBasedOnTheme (
77
79
'icons/magnifying-glass-white.png' ,
@@ -89,7 +91,9 @@ function getSearchAttributions(webContents: Electron.WebContents) {
89
91
} ;
90
92
}
91
93
92
- function getSearchSignals ( webContents : Electron . WebContents ) {
94
+ function getSearchSignals (
95
+ webContents : Electron . WebContents ,
96
+ ) : MenuItemConstructorOptions {
93
97
return {
94
98
icon : getIconBasedOnTheme (
95
99
'icons/magnifying-glass-white.png' ,
@@ -107,7 +111,9 @@ function getSearchSignals(webContents: Electron.WebContents) {
107
111
} ;
108
112
}
109
113
110
- function getSearchResources ( webContents : Electron . WebContents ) {
114
+ function getSearchResources (
115
+ webContents : Electron . WebContents ,
116
+ ) : MenuItemConstructorOptions {
111
117
return {
112
118
icon : getIconBasedOnTheme (
113
119
'icons/search-white.png' ,
@@ -125,7 +131,9 @@ function getSearchResources(webContents: Electron.WebContents) {
125
131
} ;
126
132
}
127
133
128
- function getSearchLinkedResources ( webContents : Electron . WebContents ) {
134
+ function getSearchLinkedResources (
135
+ webContents : Electron . WebContents ,
136
+ ) : MenuItemConstructorOptions {
129
137
return {
130
138
icon : getIconBasedOnTheme (
131
139
'icons/search-white.png' ,
0 commit comments