import type { ManifestElement, ManifestWithDynamicConditions } from '../../../../libs/extension-api/index.js'; export interface UmbWorkspaceInfoAppElement extends HTMLElement { manifest?: ManifestWorkspaceInfoApp; } export interface ManifestWorkspaceInfoApp extends ManifestElement, ManifestWithDynamicConditions { type: 'workspaceInfoApp'; meta: MetaType; } export interface MetaWorkspaceInfoApp { } declare global { interface UmbExtensionManifestMap { umbWorkspaceInfoApp: ManifestWorkspaceInfoApp; } }