@openfin/core 27.71.2 → 28.71.1

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.
Files changed (2) hide show
  1. package/OpenFin.d.ts +3 -1
  2. package/package.json +1 -1
package/OpenFin.d.ts CHANGED
@@ -254,6 +254,8 @@ declare namespace OpenFin {
254
254
 
255
255
  export type WindowOptions = MutableWindowOptions & ConstWindowOptions;
256
256
 
257
+ export type WindowState = 'maximized' | 'minimized' | 'normal';
258
+
257
259
  export type ConstWindowOptions = {
258
260
  accelerator: Partial<Accelerator>;
259
261
  api: Api;
@@ -281,7 +283,7 @@ declare namespace OpenFin {
281
283
  saveWindowState: boolean;
282
284
  shadow: boolean;
283
285
  smallWindow: boolean;
284
- state: 'maximized' | 'minimized' | 'normal';
286
+ state: WindowState;
285
287
  taskbarIcon: string;
286
288
  taskbarIconGroup: string;
287
289
  url: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfin/core",
3
- "version": "27.71.2",
3
+ "version": "28.71.1",
4
4
  "license": "Apache-2.0",
5
5
  "main": "./src/mock.js",
6
6
  "types": "./src/mock.d.ts",