UNPKG

@nx/react

Version:

The React plugin for Nx contains executors and generators for managing React applications and libraries within an Nx workspace. It provides: - Integration with libraries such as Jest, Vitest, Playwright, Cypress, and Storybook. - Generators for applica

12 lines 714 B
import { Tree } from '@nx/devkit'; import type { GeneratorCallback } from '@nx/devkit'; import { CypressComponentConfigurationSchema } from './schema.d'; export declare function cypressComponentConfigGenerator(tree: Tree, options: CypressComponentConfigurationSchema): Promise<GeneratorCallback>; /** * This is for using cypresses own Component testing, if you want to use test * storybook components then use componentCypressGenerator instead. * */ export declare function cypressComponentConfigGeneratorInternal(tree: Tree, options: CypressComponentConfigurationSchema): Promise<GeneratorCallback>; export default cypressComponentConfigGenerator; //# sourceMappingURL=cypress-component-configuration.d.ts.map