declare global

This commit is contained in:
Mads Rasmussen
2024-09-30 09:24:19 +02:00
parent 7ee4e0e70e
commit 2336db5b9c
3 changed files with 7 additions and 1 deletions

View File

@@ -24,3 +24,9 @@ export interface MetaDashboard {
*/
pathname?: string;
}
declare global {
interface UmbExtensionManifestMap {
umbDashboard: ManifestDashboard;
}
}

View File

@@ -0,0 +1 @@
export * from './dashboard.extension.js';

View File

@@ -46,7 +46,6 @@ export type * from './app-entry-point.model.js';
export type * from './auth-provider.model.js';
export type * from './backoffice-entry-point.model.js';
export type * from './current-user-action.model.js';
export type * from '../../dashboard/dashboard.model.js';
export type * from './dynamic-root.model.js';
export type * from './entity-action.model.js';
export type * from './entity-bulk-action.model.js';