@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
15 lines (14 loc) • 432 B
TypeScript
import { Rule } from '@angular-devkit/schematics';
export interface CoerceNestServiceProjectOptions {
project: string;
feature?: string | null;
shared?: boolean;
backend: {
project?: string | null;
kind?: any;
} | undefined;
}
/**
* @deprecated removed use the AssertNestProject function Rule
*/
export declare function CoerceNestServiceProject(options: CoerceNestServiceProjectOptions): Rule;