@todesktop/shared 7.184.6 → 7.184.8
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/base.d.ts +1 -0
- package/lib/desktopify2.d.ts +4 -0
- package/package.json +1 -1
- package/src/base.ts +1 -0
- package/src/desktopify2.ts +4 -0
package/lib/base.d.ts
CHANGED
package/lib/desktopify2.d.ts
CHANGED
|
@@ -196,6 +196,10 @@ export interface DesktopifyAppWindow {
|
|
|
196
196
|
file?: string;
|
|
197
197
|
}
|
|
198
198
|
export interface DesktopifyApp2 {
|
|
199
|
+
/**
|
|
200
|
+
* Used as appUserModelId on windows
|
|
201
|
+
*/
|
|
202
|
+
appModelId?: string;
|
|
199
203
|
id: string;
|
|
200
204
|
/**
|
|
201
205
|
* Last desktopify version that was used to update the app
|
package/package.json
CHANGED
package/src/base.ts
CHANGED
package/src/desktopify2.ts
CHANGED
|
@@ -320,6 +320,10 @@ export interface DesktopifyAppWindow {
|
|
|
320
320
|
// TODO: Look into hasMinHeight, etc
|
|
321
321
|
|
|
322
322
|
export interface DesktopifyApp2 {
|
|
323
|
+
/**
|
|
324
|
+
* Used as appUserModelId on windows
|
|
325
|
+
*/
|
|
326
|
+
appModelId?: string;
|
|
323
327
|
id: string;
|
|
324
328
|
/**
|
|
325
329
|
* Last desktopify version that was used to update the app
|