@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) • 395 B
TypeScript
import type { GeneratorCallback, Tree } from '@nx/devkit';
import type { LibraryGeneratorOptions } from './schema';
export declare function libraryGenerator(tree: Tree, rawOptions: LibraryGeneratorOptions): Promise<GeneratorCallback>;
export declare function libraryGeneratorInternal(tree: Tree, rawOptions: LibraryGeneratorOptions): Promise<GeneratorCallback>;
export default libraryGenerator;