UNPKG

@nx/plugin

Version:

This plugin is used to create Nx plugins! It contains generators for generating common plugin features like generators, executors, migrations and more.

6 lines (5 loc) 340 B
import { type Tree } from '@nx/devkit'; import type { Schema } from './schema'; export declare function createExecutorsJson(host: Tree, projectRoot: string, projectName: string, skipLintChecks?: boolean): Promise<void>; export declare function executorGenerator(host: Tree, schema: Schema): Promise<void>; export default executorGenerator;