@todesktop/shared 7.46.0 → 7.47.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.
@@ -146,7 +146,7 @@ export interface DesktopifyApp {
146
146
  width: number;
147
147
  fullScreen: boolean;
148
148
  isResizable: boolean;
149
- isTitleStatic?: string;
149
+ isTitleStatic?: boolean;
150
150
  minHeight?: number;
151
151
  minWidth?: number;
152
152
  maxHeight?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.46.0",
3
+ "version": "7.47.0",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/desktopify.ts CHANGED
@@ -259,7 +259,7 @@ export interface DesktopifyApp {
259
259
  width: number;
260
260
  fullScreen: boolean;
261
261
  isResizable: boolean;
262
- isTitleStatic?: string;
262
+ isTitleStatic?: boolean;
263
263
  minHeight?: number;
264
264
  minWidth?: number;
265
265
  maxHeight?: number;