File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed
extension-registry/models Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,6 @@ import type { ManifestFileUploadPreview } from './file-upload-preview.model.js';
23
23
import type { ManifestExternalLoginProvider } from './external-login-provider.model.js' ;
24
24
import type { ManifestGlobalContext } from './global-context.model.js' ;
25
25
import type { ManifestHeaderApp , ManifestHeaderAppButtonKind } from './header-app.model.js' ;
26
- import type { ManifestHealthCheck } from './health-check.model.js' ;
27
26
import type { ManifestMenu } from './menu.model.js' ;
28
27
import type { ManifestMenuItem , ManifestMenuItemLinkKind , ManifestMenuItemTreeKind } from './menu-item.model.js' ;
29
28
import type { ManifestPreviewAppProvider } from './preview-app.model.js' ;
@@ -57,7 +56,7 @@ export type * from './file-upload-preview.model.js';
57
56
export type * from './external-login-provider.model.js' ;
58
57
export type * from './global-context.model.js' ;
59
58
export type * from './header-app.model.js' ;
60
- export type * from './ health-check.model .js' ;
59
+ export type * from '../../ health-check/health-check.extension .js' ;
61
60
export type * from './menu-item.model.js' ;
62
61
export type * from './menu.model.js' ;
63
62
export type * from './mfa-login-provider.model.js' ;
@@ -109,7 +108,6 @@ export type ManifestTypes =
109
108
| ManifestGranularUserPermission
110
109
| ManifestHeaderApp
111
110
| ManifestHeaderAppButtonKind
112
- | ManifestHealthCheck
113
111
| ManifestItemStore
114
112
| ManifestMenu
115
113
| ManifestMenuItem
Original file line number Diff line number Diff line change @@ -18,3 +18,9 @@ export interface HealthCheck {
18
18
name : string ;
19
19
description : string ;
20
20
}
21
+
22
+ declare global {
23
+ interface UmbExtensionManifestMap {
24
+ umbDashboard : ManifestHealthCheck ;
25
+ }
26
+ }
You can’t perform that action at this time.
0 commit comments