@nx-plugins/testing-library
Version:
The Nx Plugin for Testing Library that contains executors and generators for allowing your workspace to use powerful Testing Library testing capabilities.
6 lines (5 loc) • 380 B
TypeScript
import { GeneratorCallback, Tree } from '@nrwl/devkit';
import { InitGeneratorSchema } from './schema';
declare function testingLibraryInitGenerator(tree: Tree, schema: InitGeneratorSchema): GeneratorCallback;
export default testingLibraryInitGenerator;
export declare const tailwindInit: (generatorOptions: InitGeneratorSchema) => (tree: any, context: any) => Promise<any>;