@raycast/api 1.103.4 → 1.103.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commands/pull-contributions/index.js +5 -5
- package/dist/commands/version/index.js +1 -1
- package/dist/utils/publish/git.js +1 -1
- package/dist/utils/publish/pull-contributions.js +5 -5
- package/dist/utils/publish/setup-github-fork.js +10 -10
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
- package/types/index.d.ts +12 -1
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -5856,7 +5856,18 @@ export declare namespace Keyboard {
|
|
|
5856
5856
|
*/
|
|
5857
5857
|
key: KeyEquivalent;
|
|
5858
5858
|
} | {
|
|
5859
|
-
|
|
5859
|
+
Windows: {
|
|
5860
|
+
/**
|
|
5861
|
+
* The modifier keys of the keyboard shortcut.
|
|
5862
|
+
*/
|
|
5863
|
+
modifiers: KeyModifier[];
|
|
5864
|
+
/**
|
|
5865
|
+
* The key of the keyboard shortcut.
|
|
5866
|
+
*/
|
|
5867
|
+
key: KeyEquivalent;
|
|
5868
|
+
};
|
|
5869
|
+
/** @deprecated Use Windows instead */
|
|
5870
|
+
windows?: {
|
|
5860
5871
|
/**
|
|
5861
5872
|
* The modifier keys of the keyboard shortcut.
|
|
5862
5873
|
*/
|