@openfin/workspace 14.1.2 → 14.1.3
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/README.md +12 -12
- package/client-api/src/dock.d.ts +1 -1
- package/client-api/src/notifications.d.ts +6 -6
- package/client-api/src/shapes/notifications.d.ts +9 -21
- package/client-api/src/shapes/provider.d.ts +0 -2
- package/client-api-platform/src/api/browser/index.d.ts +1 -1
- package/client-api-platform/src/api/context-menu/utils.d.ts +0 -1
- package/client-api-platform/src/init/browser-defaults.d.ts +1 -1
- package/client-api-platform/src/init/override-callback.d.ts +2 -1
- package/client-api-platform/src/init/utils.d.ts +4 -4
- package/client-api-platform/src/shapes.d.ts +49 -88
- package/common/src/api/overrides.d.ts +0 -1
- package/common/src/api/protocol/browser.d.ts +2 -4
- package/common/src/api/search/common.d.ts +1 -1
- package/common/src/api/shapes/home.d.ts +1 -1
- package/common/src/utils/indicators/browser.d.ts +3 -14
- package/home.js +49 -134
- package/home.js.map +1 -1
- package/index.js +51 -136
- package/index.js.map +1 -1
- package/notifications.js +49 -134
- package/notifications.js.map +1 -1
- package/package.json +2 -2
- package/store.js +49 -134
- package/store.js.map +1 -1
- package/client-api-platform/src/init/browser-base-url.d.ts +0 -6
- package/common/src/utils/performance.d.ts +0 -18
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
type WorkspacePerformanceMarks = 'home-registration' | 'dock-registration' | 'store-registration';
|
|
2
|
-
/**
|
|
3
|
-
* @classdesc
|
|
4
|
-
* WorkspacePerformance is a class that provides a set of methods to measure performance of workspace
|
|
5
|
-
*
|
|
6
|
-
*/
|
|
7
|
-
declare class WorkspacePerformance {
|
|
8
|
-
markStart(markName: WorkspacePerformanceMarks): void;
|
|
9
|
-
markEnd(markName: WorkspacePerformanceMarks): void;
|
|
10
|
-
markEndAndMeasure(markName: WorkspacePerformanceMarks): void;
|
|
11
|
-
reportWorkspacePerformanceEntries(): PerformanceEntry[];
|
|
12
|
-
reportWorkspacePerformance(): {
|
|
13
|
-
name: string;
|
|
14
|
-
duration: number;
|
|
15
|
-
}[];
|
|
16
|
-
}
|
|
17
|
-
declare const workspacePerformance: WorkspacePerformance;
|
|
18
|
-
export default workspacePerformance;
|