@nx/react-native
Version:
20 lines (19 loc) • 617 B
TypeScript
import { Tree } from '@nx/devkit';
import { Schema } from '../schema';
export interface NormalizedSchema extends Omit<Schema, 'useTsSolution'> {
className: string;
fileName: string;
projectName: string;
appProjectRoot: string;
lowerCaseName: string;
iosProjectRoot: string;
androidProjectRoot: string;
parsedTags: string[];
entryFile: string;
rootProject: boolean;
e2eProjectName: string;
e2eProjectRoot: string;
importPath: string;
isTsSolutionSetup: boolean;
}
export declare function normalizeOptions(host: Tree, options: Schema): Promise<NormalizedSchema>;