UNPKG

@memberjunction/react-runtime

Version:

Platform-agnostic React component runtime for MemberJunction. Provides core compilation, registry, and execution capabilities for React components in any JavaScript environment.

17 lines (16 loc) 598 B
/** * @fileoverview Registry module exports * @module @memberjunction/react-runtime/registry */ export { ComponentRegistry } from './component-registry'; export { ComponentResolver, ResolvedComponents } from './component-resolver'; export { ComponentRegistryService, IComponentRegistryClient } from './component-registry-service'; export { RegistryProvider, RegistryComponentMetadata, RegistryComponentResponse, RegistrySearchFilters, ComponentDependencyInfo, DependencyTree } from './registry-provider'; export { ComponentSpec } from '@memberjunction/interactive-component-types';