@rxap/schematics-ts-morph
Version:
This package provides utilities for manipulating TypeScript code using ts-morph, particularly for Angular and NestJS projects. It offers functions to add, coerce, and modify code elements like classes, methods, decorators, and imports. The package also in
14 lines (13 loc) • 397 B
TypeScript
import { Tree } from '@angular-devkit/schematics';
export interface HasNestControllerOptions {
project: string;
feature?: string | null;
shared?: boolean;
name: string;
nestModule: string;
backend: {
project?: string | null;
kind?: any;
} | undefined;
}
export declare function HasNestController(host: Tree, options: HasNestControllerOptions): boolean;