@todesktop/shared 7.141.0 → 7.143.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 +4 -0
- package/package.json +1 -1
- package/src/desktopify2.ts +4 -0
package/lib/desktopify2.d.ts
CHANGED
|
@@ -363,6 +363,10 @@ export interface DesktopifyApp2 {
|
|
|
363
363
|
[lang in ValidTranslationLanguages]?: string;
|
|
364
364
|
};
|
|
365
365
|
};
|
|
366
|
+
/**
|
|
367
|
+
* File assets that get bundled with the app and are available offline
|
|
368
|
+
*/
|
|
369
|
+
fileAssetDetailsList: FileAssetDetails;
|
|
366
370
|
}
|
|
367
371
|
export interface IApp2 extends BaseApp {
|
|
368
372
|
desktopApp: DesktopifyApp2;
|
package/package.json
CHANGED
package/src/desktopify2.ts
CHANGED
|
@@ -488,6 +488,10 @@ export interface DesktopifyApp2 {
|
|
|
488
488
|
[lang in ValidTranslationLanguages]?: string;
|
|
489
489
|
};
|
|
490
490
|
};
|
|
491
|
+
/**
|
|
492
|
+
* File assets that get bundled with the app and are available offline
|
|
493
|
+
*/
|
|
494
|
+
fileAssetDetailsList: FileAssetDetails;
|
|
491
495
|
}
|
|
492
496
|
|
|
493
497
|
export interface IApp2 extends BaseApp {
|