@todesktop/shared 7.54.0 → 7.55.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/desktopify.d.ts +1 -0
- package/package.json +1 -1
- package/src/desktopify.ts +1 -0
package/lib/desktopify.d.ts
CHANGED
|
@@ -170,6 +170,7 @@ export interface DesktopifyAppWindow {
|
|
|
170
170
|
transparentTitlebar: boolean;
|
|
171
171
|
shouldResetDimensions?: boolean;
|
|
172
172
|
vibrancy?: BrowserWindowConstructorOptions["vibrancy"];
|
|
173
|
+
toggleVisibilityKeyboardShortcut?: string;
|
|
173
174
|
}
|
|
174
175
|
export declare type DesktopifyAppTrayToggleWindowAction = {
|
|
175
176
|
role: "toggleWindow";
|
package/package.json
CHANGED
package/src/desktopify.ts
CHANGED
|
@@ -304,6 +304,7 @@ export interface DesktopifyAppWindow {
|
|
|
304
304
|
transparentTitlebar: boolean;
|
|
305
305
|
shouldResetDimensions?: boolean;
|
|
306
306
|
vibrancy?: BrowserWindowConstructorOptions["vibrancy"];
|
|
307
|
+
toggleVisibilityKeyboardShortcut?: string;
|
|
307
308
|
}
|
|
308
309
|
|
|
309
310
|
export type DesktopifyAppTrayToggleWindowAction = {
|