@openfin/core
Advanced tools
Comparing version 25.68.30 to 25.68.31
{ | ||
"name": "@openfin/core", | ||
"version": "25.68.30", | ||
"version": "25.68.31", | ||
"license": "Apache-2.0", | ||
@@ -5,0 +5,0 @@ "main": "./src/mock.js", |
import { EmitterBase } from '../base'; | ||
import Transport from '../../transport/transport'; | ||
import ApplicationEvents = OpenFin.ApplicationEvents; | ||
/** | ||
@@ -10,3 +9,3 @@ * @classdesc An object representing an application. Allows the developer to create, | ||
*/ | ||
export declare class Application extends EmitterBase<ApplicationEvents> { | ||
export declare class Application extends EmitterBase<OpenFin.ApplicationEvents> { | ||
identity: OpenFin.ApplicationIdentity; | ||
@@ -139,3 +138,3 @@ _manifestUrl?: string; | ||
*/ | ||
getManifest(): Promise<any>; | ||
getManifest(): Promise<OpenFin.Manifest>; | ||
/** | ||
@@ -142,0 +141,0 @@ * Retrieves UUID of the application that launches this application. Invokes the error callback |
@@ -15,3 +15,3 @@ import { EmitterBase } from '../base'; | ||
import Entity = OpenFin.Entity; | ||
import WindowInfo = OpenFin.WindowInfo; | ||
import SystemWindowInfo = OpenFin.SystemWindowInfo; | ||
import SystemApplicationInfo = OpenFin.SystemApplicationInfo; | ||
@@ -471,3 +471,3 @@ /** | ||
* WindowInfo interface | ||
* @typedef { object } WindowInfo | ||
* @typedef { object } ApplicationWindowInfo | ||
* @property { Array<WindowDetail> } childWindows The array of child windows details | ||
@@ -615,6 +615,6 @@ * @property { WindowDetail } mainWindow The main window detail | ||
* Retrieves an array of data (name, ids, bounds) for all application windows. | ||
* @return {Promise.Array.<WindowInfo>} | ||
* @return {Promise.Array.<SystemWindowInfo>} | ||
* @tutorial System.getAllWindows | ||
*/ | ||
getAllWindows(): Promise<Array<WindowInfo>>; | ||
getAllWindows(): Promise<Array<SystemWindowInfo>>; | ||
/** | ||
@@ -671,6 +671,6 @@ * Retrieves an array of data for all applications. | ||
* Get current focused window. | ||
* @return {Promise.<WindowInfo>} | ||
* @return {Promise.<ApplicationWindowInfo>} | ||
* @tutorial System.getFocusedWindow | ||
*/ | ||
getFocusedWindow(): Promise<WindowInfo>; | ||
getFocusedWindow(): Promise<SystemWindowInfo>; | ||
/** | ||
@@ -677,0 +677,0 @@ * Returns information about the given app's certification status |
@@ -459,3 +459,3 @@ "use strict"; | ||
* WindowInfo interface | ||
* @typedef { object } WindowInfo | ||
* @typedef { object } ApplicationWindowInfo | ||
* @property { Array<WindowDetail> } childWindows The array of child windows details | ||
@@ -662,3 +662,3 @@ * @property { WindowDetail } mainWindow The main window detail | ||
* Retrieves an array of data (name, ids, bounds) for all application windows. | ||
* @return {Promise.Array.<WindowInfo>} | ||
* @return {Promise.Array.<SystemWindowInfo>} | ||
* @tutorial System.getAllWindows | ||
@@ -751,3 +751,3 @@ */ | ||
* Get current focused window. | ||
* @return {Promise.<WindowInfo>} | ||
* @return {Promise.<ApplicationWindowInfo>} | ||
* @tutorial System.getFocusedWindow | ||
@@ -754,0 +754,0 @@ */ |
import _WindowModule from './Factory'; | ||
export default _WindowModule; | ||
export * from './shapes'; | ||
export * from './Instance'; | ||
export * from './bounds-changed'; |
@@ -15,4 +15,2 @@ "use strict"; | ||
exports.default = Factory_1.default; | ||
__exportStar(require("./shapes"), exports); | ||
__exportStar(require("./Instance"), exports); | ||
__exportStar(require("./bounds-changed"), exports); |
import Transport from '../../transport/transport'; | ||
import { WebContents } from '../webcontents/main'; | ||
import { WindowInfo } from './shapes'; | ||
import WindowEvents = OpenFin.WindowEvents; | ||
@@ -754,3 +753,3 @@ /** | ||
*/ | ||
getInfo(): Promise<WindowInfo>; | ||
getInfo(): Promise<OpenFin.WindowInfo>; | ||
/** | ||
@@ -757,0 +756,0 @@ * Retrieves the window's Layout |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
4020426
169
18342