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) 391 B
import { type GeneratorCallback, type Tree } from '@nx/devkit'; import type { PresetGeneratorSchema } from './schema'; export declare function presetGenerator(tree: Tree, rawOptions: PresetGeneratorSchema): Promise<GeneratorCallback>; export declare function presetGeneratorInternal(tree: Tree, rawOptions: PresetGeneratorSchema): Promise<GeneratorCallback>; export default presetGenerator;