docs: improve globalShortcut and hookWindowMessage types (#37115)

This commit is contained in:
Samuel Attard 2023-02-02 12:31:28 -08:00 committed by GitHub
parent 33c32a798b
commit 1a6085e20e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -1402,8 +1402,8 @@ The native type of the handle is `HWND` on Windows, `NSView*` on macOS, and
* `message` Integer * `message` Integer
* `callback` Function * `callback` Function
* `wParam` any - The `wParam` provided to the WndProc * `wParam` Buffer - The `wParam` provided to the WndProc
* `lParam` any - The `lParam` provided to the WndProc * `lParam` Buffer - The `lParam` provided to the WndProc
Hooks a windows message. The `callback` is called when Hooks a windows message. The `callback` is called when
the message is received in the WndProc. the message is received in the WndProc.

View file

@ -66,7 +66,7 @@ the app has been authorized as a [trusted accessibility client](https://develope
### `globalShortcut.registerAll(accelerators, callback)` ### `globalShortcut.registerAll(accelerators, callback)`
* `accelerators` string[] - an array of [Accelerator](accelerator.md)s. * `accelerators` [Accelerator](accelerator.md)[] - an array of [Accelerator](accelerator.md)s.
* `callback` Function * `callback` Function
Registers a global shortcut of all `accelerator` items in `accelerators`. The `callback` is called when any of the registered shortcuts are pressed by the user. Registers a global shortcut of all `accelerator` items in `accelerators`. The `callback` is called when any of the registered shortcuts are pressed by the user.