16 lines
338 B
TypeScript

export interface Schema {
appName: string;
mfType: 'host' | 'remote';
port?: number;
remotes?: string[];
host?: string;
federationType?: 'static' | 'dynamic';
routing?: boolean;
skipFormat?: boolean;
skipPackageJson?: boolean;
e2eProjectName?: string;
prefix?: string;
standalone?: boolean;
skipE2E?: boolean;
}