UNPKG

@nx/nest

Version:

The Nx Plugin for Nest contains executors and generators for allowing your workspace to create powerful Nest best in class APIs.

9 lines (8 loc) 438 B
import type { Tree } from '@nx/devkit'; import type { NestGeneratorWithLanguageOption, NestGeneratorWithTestOption } from '../utils'; export type ControllerGeneratorOptions = NestGeneratorWithLanguageOption & NestGeneratorWithTestOption & { module?: string; skipImport?: boolean; }; export declare function controllerGenerator(tree: Tree, rawOptions: ControllerGeneratorOptions): Promise<any>; export default controllerGenerator;