@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.
- package/OpenFin.d.ts +3 -1
- 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:
|
|
286
|
+
state: WindowState;
|
|
285
287
|
taskbarIcon: string;
|
|
286
288
|
taskbarIconGroup: string;
|
|
287
289
|
url: string;
|