@nx/remix
Version:
13 lines (12 loc) • 474 B
TypeScript
import { type Tree } from '@nx/devkit';
import { type NxRemixGeneratorSchema } from '../schema';
export interface NormalizedSchema extends NxRemixGeneratorSchema {
projectName: string;
projectRoot: string;
importPath: string;
e2eProjectName: string;
e2eProjectRoot: string;
parsedTags: string[];
isUsingTsSolutionConfig: boolean;
}
export declare function normalizeOptions(tree: Tree, options: NxRemixGeneratorSchema): Promise<NormalizedSchema>;