@todesktop/shared 7.144.0 → 7.145.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 +1 -1
- package/package.json +1 -1
- package/src/desktopify2.ts +1 -1
package/lib/desktopify2.d.ts
CHANGED
|
@@ -366,7 +366,7 @@ export interface DesktopifyApp2 {
|
|
|
366
366
|
/**
|
|
367
367
|
* File assets that get bundled with the app and are available offline
|
|
368
368
|
*/
|
|
369
|
-
fileAssetDetailsList: FileAssetDetails;
|
|
369
|
+
fileAssetDetailsList: FileAssetDetails[];
|
|
370
370
|
}
|
|
371
371
|
export interface IApp2 extends BaseApp {
|
|
372
372
|
desktopApp: DesktopifyApp2;
|
package/package.json
CHANGED
package/src/desktopify2.ts
CHANGED
|
@@ -491,7 +491,7 @@ export interface DesktopifyApp2 {
|
|
|
491
491
|
/**
|
|
492
492
|
* File assets that get bundled with the app and are available offline
|
|
493
493
|
*/
|
|
494
|
-
fileAssetDetailsList: FileAssetDetails;
|
|
494
|
+
fileAssetDetailsList: FileAssetDetails[];
|
|
495
495
|
}
|
|
496
496
|
|
|
497
497
|
export interface IApp2 extends BaseApp {
|