@nestjs-mod/schematics
Version:
The Nx Plugin for NestJS that contains executors and generators for allowing your workspace to create NestJS-mod applications
6 lines (5 loc) • 419 B
TypeScript
import type { GeneratorCallback, Tree } from '@nx/devkit';
import type { ApplicationGeneratorOptions } from './schema';
export declare function applicationGenerator(tree: Tree, rawOptions: ApplicationGeneratorOptions): Promise<GeneratorCallback>;
export declare function applicationGeneratorInternal(tree: Tree, rawOptions: ApplicationGeneratorOptions): Promise<GeneratorCallback>;
export default applicationGenerator;