/** @alpha */ export type BackendFeatureMeta = { type: 'plugin'; pluginId: string; } | { type: 'module'; pluginId: string; moduleId: string; }; /** @alpha */ export interface InstanceMetadataService { getInstalledFeatures: () => BackendFeatureMeta[]; }