@nx/remix
Version:
9 lines (8 loc) • 374 B
TypeScript
import { type Tree } from '@nx/devkit';
import type { NxRemixGeneratorSchema } from '../schema';
export interface RemixLibraryOptions extends NxRemixGeneratorSchema {
projectName: string;
projectRoot: string;
isUsingTsSolutionConfig: boolean;
}
export declare function normalizeOptions(tree: Tree, options: NxRemixGeneratorSchema): Promise<RemixLibraryOptions>;