@todesktop/shared 7.93.0 → 7.94.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 +7 -0
- package/package.json +1 -1
- package/src/desktopify2.ts +7 -0
package/lib/desktopify2.d.ts
CHANGED
|
@@ -163,6 +163,13 @@ export interface DesktopifyApp2 {
|
|
|
163
163
|
* The app icon
|
|
164
164
|
*/
|
|
165
165
|
icon?: string;
|
|
166
|
+
/**
|
|
167
|
+
* Instead of using one icon for every platform, use a separate icon for different platforms
|
|
168
|
+
*/
|
|
169
|
+
useSeparateIcons?: boolean;
|
|
170
|
+
windowsIcon?: string;
|
|
171
|
+
macOSIcon?: string;
|
|
172
|
+
linuxIcon?: string;
|
|
166
173
|
/**
|
|
167
174
|
* The name of the company that the app belongs to
|
|
168
175
|
*/
|
package/package.json
CHANGED
package/src/desktopify2.ts
CHANGED
|
@@ -275,6 +275,13 @@ export interface DesktopifyApp2 {
|
|
|
275
275
|
* The app icon
|
|
276
276
|
*/
|
|
277
277
|
icon?: string;
|
|
278
|
+
/**
|
|
279
|
+
* Instead of using one icon for every platform, use a separate icon for different platforms
|
|
280
|
+
*/
|
|
281
|
+
useSeparateIcons?: boolean;
|
|
282
|
+
windowsIcon?: string;
|
|
283
|
+
macOSIcon?: string;
|
|
284
|
+
linuxIcon?: string;
|
|
278
285
|
/**
|
|
279
286
|
* The name of the company that the app belongs to
|
|
280
287
|
*/
|