move files

This commit is contained in:
Mads Rasmussen
2024-09-30 12:55:41 +02:00
parent e888a4134c
commit fa13b0520d
3 changed files with 7 additions and 3 deletions

View File

@@ -6,7 +6,6 @@ import type { ManifestExternalLoginProvider } from './external-login-provider.mo
import type { ManifestTinyMcePlugin } from './tinymce-plugin.model.js';
import type { ManifestUfmComponent } from './ufm-component.model.js';
import type { ManifestUfmFilter } from './ufm-filter.model.js';
import type { ManifestUserProfileApp } from './user-profile-app.model.js';
import type { ManifestGranularUserPermission } from './user-granular-permission.model.js';
import type { ManifestMfaLoginProvider } from './mfa-login-provider.model.js';
import type { ManifestMonacoMarkdownEditorAction } from './monaco-markdown-editor-action.model.js';
@@ -27,7 +26,6 @@ export type * from './tinymce-plugin.model.js';
export type * from './ufm-component.model.js';
export type * from './ufm-filter.model.js';
export type * from './user-granular-permission.model.js';
export type * from './user-profile-app.model.js';
export type ManifestTypes =
| ManifestAuthProvider
@@ -45,7 +43,6 @@ export type ManifestTypes =
| ManifestTinyMcePlugin
| ManifestUfmComponent
| ManifestUfmFilter
| ManifestUserProfileApp
| ManifestBase;
type UnionOfProperties<T> = T extends object ? T[keyof T] : never;

View File

@@ -6,5 +6,6 @@ export * from './current-user.context.token.js';
export * from './history/current-user-history.store.js';
export * from './repository/index.js';
export * from './utils/index.js';
export * from './user-profile-app.extension.js';
export type * from './types.js';

View File

@@ -9,3 +9,9 @@ export interface MetaUserProfileApp {
label: string;
pathname: string;
}
declare global {
interface UmbExtensionManifestMap {
umbUserProfileApp: ManifestUserProfileApp;
}
}