UNPKG

@nx/expo

Version:

The Expo Plugin for Nx contains executors and generators for managing and developing an expo application within your workspace. For example, you can directly build for different target platforms as well as generate projects and publish your code.

17 lines 592 B
import { Tree } from '@nx/devkit'; import { Schema } from '../schema'; export interface NormalizedSchema extends Omit<Schema, 'name' | 'useTsSolution'> { className: string; simpleName: string; projectName: string; appProjectRoot: string; importPath: string; lowerCaseName: string; parsedTags: string[]; rootProject: boolean; e2eProjectName: string; e2eProjectRoot: string; isTsSolutionSetup: boolean; } export declare function normalizeOptions(host: Tree, options: Schema): Promise<NormalizedSchema>; //# sourceMappingURL=normalize-options.d.ts.map