@openfin/workspace-platform 19.1.9 → 19.1.10

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.
@@ -1,9 +1,9 @@
1
1
  import type OpenFin from '@openfin/core';
2
- import type { CustomThemeOptions, CustomThemeOptionsWithScheme } from '../../../../common/src/api/theming';
2
+ import type { PreloadedThemeData } from '../../../../common/src/api/theming';
3
3
  import { BrowserInitConfig } from '../../../../client-api-platform/src/shapes';
4
4
  export declare const DEFAULT_BROWSER_URL: string;
5
5
  export declare const ENTERPRISE_LANDING_PAGE_URL: string;
6
6
  /**
7
7
  * Applies default options to the creation of browser windows.
8
8
  */
9
- export declare const applyBrowserDefaults: (options: OpenFin.PlatformWindowCreationOptions, initOptions: Pick<BrowserInitConfig, 'defaultWindowOptions' | 'defaultPageOptions' | 'defaultViewOptions'> | undefined, theme?: CustomThemeOptions | CustomThemeOptionsWithScheme) => Promise<OpenFin.PlatformWindowCreationOptions>;
9
+ export declare function applyBrowserDefaults(options: OpenFin.PlatformWindowCreationOptions, initOptions: Pick<BrowserInitConfig, 'defaultWindowOptions' | 'defaultPageOptions' | 'defaultViewOptions'> | undefined, themeData?: PreloadedThemeData): Promise<OpenFin.PlatformWindowCreationOptions>;