UNPKG

@nx/detox

Version:

The Nx Plugin for Detox contains executors and generators for allowing your workspace to use the powerful Detox integration testing capabilities.

14 lines (13 loc) 455 B
import { Tree } from '@nx/devkit'; import { Schema } from '../schema'; export interface NormalizedSchema extends Omit<Schema, 'e2eName'> { appFileName: string; appClassName: string; appExpoName: string; appRoot: string; e2eProjectName: string; e2eProjectRoot: string; importPath: string; isUsingTsSolutionConfig?: boolean; } export declare function normalizeOptions(host: Tree, options: Schema): Promise<NormalizedSchema>;