@nestjs-mod/schematics
Version:
The Nx Plugin for NestJS that contains executors and generators for allowing your workspace to create NestJS-mod applications
9 lines (8 loc) • 505 B
TypeScript
import type { Tree } from '@nx/devkit';
import type { NestGeneratorWithLanguageOption, NormalizedOptions, UnitTestRunner } from './types';
export declare function normalizeOptions(tree: Tree, options: NestGeneratorWithLanguageOption, normalizationOptions?: {
allowedFileExtensions?: Array<'js' | 'ts'>;
skipLanguageOption?: boolean;
suffix?: string;
}): Promise<NormalizedOptions>;
export declare function unitTestRunnerToSpec(unitTestRunner: UnitTestRunner | undefined): boolean | undefined;