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

6 lines (5 loc) 509 B
import type { ForUpdatingCache } from '../../driver-ports/dynamic-init/for-updating-cache'; import type { DrivingContract } from '../../driving-ports/driving.contract'; import type { LoggingConfig } from '../../config/log.contract'; import type { ModeConfig } from 'lib/2.app/config/mode.contract'; export declare function createUpdateCache(config: LoggingConfig & ModeConfig, ports: Pick<DrivingContract, 'remoteInfoRepo' | 'sharedExternalsRepo' | 'scopedExternalsRepo' | 'versionCheck'>): ForUpdatingCache;