@openfin/workspace-platform 17.2.9 → 17.2.11
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/client-api-platform/src/shapes.d.ts +10 -0
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -1548,6 +1548,16 @@ export interface WorkspacePlatformProvider extends OpenFin.PlatformProvider {
|
|
|
1548
1548
|
* the original page will remain after 'Save As' is performed.
|
|
1549
1549
|
*/
|
|
1550
1550
|
copyPage(payload: CopyPagePayload): Promise<Page>;
|
|
1551
|
+
/**
|
|
1552
|
+
* Implementation for getting current selected language
|
|
1553
|
+
* @returns language in ISO language code
|
|
1554
|
+
*/
|
|
1555
|
+
getLanguage(): Promise<Locale>;
|
|
1556
|
+
/**
|
|
1557
|
+
* Implementation for setting a language
|
|
1558
|
+
* @param locale in ISO language code format
|
|
1559
|
+
*/
|
|
1560
|
+
setLanguage(locale: Locale): Promise<void>;
|
|
1551
1561
|
}
|
|
1552
1562
|
/**
|
|
1553
1563
|
* The origins from which a custom action can be invoked
|