@openfin/workspace 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/home.js +1 -1
- package/home.js.map +1 -1
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/notifications.js +1 -1
- package/notifications.js.map +1 -1
- package/package.json +1 -1
- package/store.js +1 -1
- package/store.js.map +1 -1
|
@@ -1609,6 +1609,16 @@ export interface WorkspacePlatformProvider extends OpenFin.PlatformProvider {
|
|
|
1609
1609
|
* the original page will remain after 'Save As' is performed.
|
|
1610
1610
|
*/
|
|
1611
1611
|
copyPage(payload: CopyPagePayload): Promise<Page>;
|
|
1612
|
+
/**
|
|
1613
|
+
* Implementation for getting current selected language
|
|
1614
|
+
* @returns language in ISO language code
|
|
1615
|
+
*/
|
|
1616
|
+
getLanguage(): Promise<Locale>;
|
|
1617
|
+
/**
|
|
1618
|
+
* Implementation for setting a language
|
|
1619
|
+
* @param locale in ISO language code format
|
|
1620
|
+
*/
|
|
1621
|
+
setLanguage(locale: Locale): Promise<void>;
|
|
1612
1622
|
}
|
|
1613
1623
|
/**
|
|
1614
1624
|
* The origins from which a custom action can be invoked
|