Skip to content

Commit 26938e1

Browse files
committedJan 2, 2020
Fix the TypeScript types
Fixes #91
1 parent dd5dc58 commit 26938e1

File tree

2 files changed

+26
-17
lines changed

2 files changed

+26
-17
lines changed
 

‎index.d.ts

+17-17
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {
44
BrowserWindow,
55
WebviewTag,
66
ContextMenuParams,
7-
MenuItem,
7+
MenuItemConstructorOptions,
88
Event as ElectronEvent
99
} from 'electron';
1010

@@ -76,18 +76,18 @@ declare namespace contextMenu {
7676
}
7777

7878
interface Actions {
79-
readonly separator: () => MenuItem;
80-
readonly lookUpSelection: (options: ActionOptions) => MenuItem;
81-
readonly cut: (options: ActionOptions) => MenuItem;
82-
readonly copy: (options: ActionOptions) => MenuItem;
83-
readonly paste: (options: ActionOptions) => MenuItem;
84-
readonly saveImage: (options: ActionOptions) => MenuItem;
85-
readonly saveImageAs: (options: ActionOptions) => MenuItem;
86-
readonly copyLink: (options: ActionOptions) => MenuItem;
87-
readonly copyImage: (options: ActionOptions) => MenuItem;
88-
readonly copyImageAddress: (options: ActionOptions) => MenuItem;
89-
readonly inspect: () => MenuItem;
90-
readonly services: () => MenuItem;
79+
readonly separator: () => MenuItemConstructorOptions;
80+
readonly lookUpSelection: (options: ActionOptions) => MenuItemConstructorOptions;
81+
readonly cut: (options: ActionOptions) => MenuItemConstructorOptions;
82+
readonly copy: (options: ActionOptions) => MenuItemConstructorOptions;
83+
readonly paste: (options: ActionOptions) => MenuItemConstructorOptions;
84+
readonly saveImage: (options: ActionOptions) => MenuItemConstructorOptions;
85+
readonly saveImageAs: (options: ActionOptions) => MenuItemConstructorOptions;
86+
readonly copyLink: (options: ActionOptions) => MenuItemConstructorOptions;
87+
readonly copyImage: (options: ActionOptions) => MenuItemConstructorOptions;
88+
readonly copyImageAddress: (options: ActionOptions) => MenuItemConstructorOptions;
89+
readonly inspect: () => MenuItemConstructorOptions;
90+
readonly services: () => MenuItemConstructorOptions;
9191
}
9292

9393
interface Options {
@@ -106,7 +106,7 @@ declare namespace contextMenu {
106106
defaultActions: Actions,
107107
params: ContextMenuParams,
108108
browserWindow: BrowserWindow | WebviewTag
109-
) => MenuItem[];
109+
) => MenuItemConstructorOptions[];
110110

111111
/**
112112
Should return an array of [menu items](https://electronjs.org/docs/api/menu-item) to be appended to the context menu.
@@ -117,7 +117,7 @@ declare namespace contextMenu {
117117
defaultActions: Actions,
118118
param: ContextMenuParams,
119119
browserWindow: BrowserWindow | WebviewTag
120-
) => MenuItem[];
120+
) => MenuItemConstructorOptions[];
121121

122122
/**
123123
Show the `Look Up {selection}` menu item when right-clicking text on macOS.
@@ -200,7 +200,7 @@ declare namespace contextMenu {
200200
/**
201201
This option lets you manually pick what menu items to include. It's meant for advanced needs. The default menu with the other options should be enough for most use-cases, and it ensures correct behavior, for example, correct order of menu items. So prefer the `append` and `prepend` option instead of `menu` whenever possible.
202202
203-
The function passed to this option is expected to return [`MenuItem[]`](https://electronjs.org/docs/api/menu-item/). The first argument the function receives is an array of default actions that can be used. These actions are functions that can take an object with a transform property (except for `separator` and `inspect`). The transform function will be passed the content of the action and can modify it if needed.
203+
The function passed to this option is expected to return an array of [`MenuItem` constructor options](https://electronjs.org/docs/api/menu-item/). The first argument the function receives is an array of default actions that can be used. These actions are functions that can take an object with a transform property (except for `separator` and `inspect`). The transform function will be passed the content of the action and can modify it if needed.
204204
205205
Even though you include an action, it will still only be shown/enabled when appropriate. For example, the `saveImage` action is only shown when right-clicking an image.
206206
@@ -221,7 +221,7 @@ declare namespace contextMenu {
221221
defaultActions: Actions,
222222
params: ContextMenuParams,
223223
browserWindow: BrowserWindow | WebviewTag
224-
) => MenuItem[];
224+
) => MenuItemConstructorOptions[];
225225
}
226226
}
227227

‎index.test-d.ts

+9
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,12 @@ import {expectType} from 'tsd';
22
import contextMenu = require('.');
33

44
expectType<void>(contextMenu());
5+
6+
contextMenu({
7+
append: () => [
8+
{
9+
label: 'Unicorn',
10+
enabled: false
11+
}
12+
]
13+
});

0 commit comments

Comments
 (0)
Please sign in to comment.