UNPKG

vanilla-native-federation

Version:

A lightweight **runtime micro frontend orchestrator** that loads micro frontends built with native federation into any web page. Unlike other solutions, it caches dependencies across page reloads, making it perfect for traditional server-rendered apps (PH

7 lines (6 loc) 584 B
import type { ForGettingRemoteEntries } from '../../driver-ports/init/for-getting-remote-entries.port'; import type { DrivingContract } from '../../driving-ports/driving.contract'; import type { LoggingConfig } from '../../config/log.contract'; import type { ModeConfig } from '../../config/mode.contract'; import type { HostConfig } from '../../config/host.contract'; export declare function createGetRemoteEntries(config: LoggingConfig & ModeConfig & HostConfig, ports: Pick<DrivingContract, 'remoteEntryProvider' | 'manifestProvider' | 'remoteInfoRepo'>): ForGettingRemoteEntries;