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