@nx/react
Version:
11 lines (10 loc) • 642 B
TypeScript
import { Tree } from '@nx/devkit';
import { CypressComponentConfigurationSchema } from './schema.d';
export declare function cypressComponentConfigGenerator(tree: Tree, options: CypressComponentConfigurationSchema): Promise<import("@nx/devkit").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<import("@nx/devkit").GeneratorCallback>;
export default cypressComponentConfigGenerator;