@todesktop/shared 7.186.17 → 7.186.18
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 +4 -0
- package/package.json +1 -1
- package/src/desktopify2.ts +4 -0
package/lib/desktopify2.d.ts
CHANGED
|
@@ -125,6 +125,10 @@ export interface DesktopifyAppWindow {
|
|
|
125
125
|
* A *mutable* window object id
|
|
126
126
|
*/
|
|
127
127
|
objectId?: string;
|
|
128
|
+
/**
|
|
129
|
+
* The window's background type
|
|
130
|
+
*/
|
|
131
|
+
backgroundType?: 'normal' | 'vibrant' | 'transparent' | 'color';
|
|
128
132
|
/**
|
|
129
133
|
* The window name. Only visible to developer
|
|
130
134
|
*/
|
package/package.json
CHANGED
package/src/desktopify2.ts
CHANGED
|
@@ -251,6 +251,10 @@ export interface DesktopifyAppWindow {
|
|
|
251
251
|
* A *mutable* window object id
|
|
252
252
|
*/
|
|
253
253
|
objectId?: string;
|
|
254
|
+
/**
|
|
255
|
+
* The window's background type
|
|
256
|
+
*/
|
|
257
|
+
backgroundType?: 'normal' | 'vibrant' | 'transparent' | 'color';
|
|
254
258
|
/**
|
|
255
259
|
* The window name. Only visible to developer
|
|
256
260
|
*/
|