vanilla-native-federation
Version:
A lightweight **runtime micro frontend orchestrator** that loads micro frontends built with native federation into any web page. It can cache dependencies across page reloads, making it perfect for traditional server-rendered hosts (PHP, Java, Rails, etc.
5 lines (4 loc) • 423 B
TypeScript
import type { DrivingContract } from '../../driving-ports/driving.contract';
import type { ForCommittingChanges } from '../../driver-ports/init/for-committing-changes.port';
import type { LoggingConfig } from '../../config';
export declare function createCommitChanges(config: LoggingConfig, ports: Pick<DrivingContract, 'remoteInfoRepo' | 'scopedExternalsRepo' | 'sharedExternalsRepo' | 'browser'>): ForCommittingChanges;