@todesktop/shared 7.130.0 → 7.132.0
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/lib/desktopify2.d.ts +1 -5
- package/package.json +1 -1
- package/src/desktopify2.ts +1 -5
package/lib/desktopify2.d.ts
CHANGED
|
@@ -120,11 +120,7 @@ export interface DesktopifyAppWindow {
|
|
|
120
120
|
/**
|
|
121
121
|
* The type of window
|
|
122
122
|
*/
|
|
123
|
-
type: "menubar" | "app";
|
|
124
|
-
/**
|
|
125
|
-
* The window's application menu
|
|
126
|
-
*/
|
|
127
|
-
applicationMenu: DesktopifyAppMenu[];
|
|
123
|
+
type: "menubar" | "app" | "panel";
|
|
128
124
|
/**
|
|
129
125
|
* Keyboard shortcut to toggle window visibility
|
|
130
126
|
*/
|
package/package.json
CHANGED
package/src/desktopify2.ts
CHANGED
|
@@ -236,11 +236,7 @@ export interface DesktopifyAppWindow {
|
|
|
236
236
|
/**
|
|
237
237
|
* The type of window
|
|
238
238
|
*/
|
|
239
|
-
type: "menubar" | "app";
|
|
240
|
-
/**
|
|
241
|
-
* The window's application menu
|
|
242
|
-
*/
|
|
243
|
-
applicationMenu: DesktopifyAppMenu[];
|
|
239
|
+
type: "menubar" | "app" | "panel";
|
|
244
240
|
/**
|
|
245
241
|
* Keyboard shortcut to toggle window visibility
|
|
246
242
|
*/
|