@nx/nest
Version:
9 lines (8 loc) • 438 B
TypeScript
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;