@todesktop/shared 7.126.0 → 7.127.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 +5 -1
- package/package.json +1 -1
- package/src/desktopify2.ts +5 -1
package/lib/desktopify2.d.ts
CHANGED
|
@@ -169,9 +169,13 @@ export interface DesktopifyApp2 {
|
|
|
169
169
|
*/
|
|
170
170
|
name: string;
|
|
171
171
|
/**
|
|
172
|
-
* The app icon
|
|
172
|
+
* The app icon url
|
|
173
173
|
*/
|
|
174
174
|
icon?: string;
|
|
175
|
+
/**
|
|
176
|
+
* The locally-bundled app icon.
|
|
177
|
+
*/
|
|
178
|
+
bundledIcon?: string;
|
|
175
179
|
/**
|
|
176
180
|
* Instead of using one icon for every platform, use a separate icon for different platforms
|
|
177
181
|
*/
|
package/package.json
CHANGED
package/src/desktopify2.ts
CHANGED
|
@@ -282,9 +282,13 @@ export interface DesktopifyApp2 {
|
|
|
282
282
|
*/
|
|
283
283
|
name: string;
|
|
284
284
|
/**
|
|
285
|
-
* The app icon
|
|
285
|
+
* The app icon url
|
|
286
286
|
*/
|
|
287
287
|
icon?: string;
|
|
288
|
+
/**
|
|
289
|
+
* The locally-bundled app icon.
|
|
290
|
+
*/
|
|
291
|
+
bundledIcon?: string;
|
|
288
292
|
/**
|
|
289
293
|
* Instead of using one icon for every platform, use a separate icon for different platforms
|
|
290
294
|
*/
|