import type { ManifestElement } from '../../../libs/extension-api/index.js'; export interface ManifestUserProfileApp extends ManifestElement { type: 'userProfileApp'; meta: MetaUserProfileApp; } export interface MetaUserProfileApp { label: string; pathname: string; } declare global { interface UmbExtensionManifestMap { umbUserProfileApp: ManifestUserProfileApp; } }