@openfin/workspace 13.0.0 → 13.0.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.
@@ -4,4 +4,4 @@ import type { BrowserInitConfig } from '..';
4
4
  /**
5
5
  * Applies default options to the creation of browser windows.
6
6
  */
7
- export declare const applyBrowserDefaults: (options: OpenFin.PlatformWindowCreationOptions, initOptions: Pick<BrowserInitConfig, 'defaultWindowOptions' | 'defaultPageOptions'>, theme?: CustomThemeOptions | CustomThemeOptionsWithScheme) => Promise<OpenFin.PlatformWindowCreationOptions>;
7
+ export declare const applyBrowserDefaults: (options: OpenFin.PlatformWindowCreationOptions, initOptions: Pick<BrowserInitConfig, 'defaultWindowOptions' | 'defaultPageOptions'> | undefined, theme?: CustomThemeOptions | CustomThemeOptionsWithScheme) => Promise<OpenFin.PlatformWindowCreationOptions>;
@@ -1469,7 +1469,7 @@ export interface WorkspacePlatformInitConfig {
1469
1469
  /** Config for overriding browser options and behavior.
1470
1470
  * Set to null to initalize the platform without the browser
1471
1471
  */
1472
- browser?: BrowserInitConfig;
1472
+ browser?: BrowserInitConfig | null;
1473
1473
  /** Custom Themes object
1474
1474
  *
1475
1475
  * ```ts