@nx/module-federation
Version:
7 lines (6 loc) • 315 B
TypeScript
import { ProjectGraph } from '@nx/devkit';
import { StaticRemoteConfig } from '../../utils';
export declare function parseRemotesConfig(remotes: string[] | undefined, workspaceRoot: string, projectGraph: ProjectGraph, isServer?: boolean): {
remotes: string[];
config: Record<string, StaticRemoteConfig>;
};