UNPKG

@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

9 lines (8 loc) 523 B
import { TsMorphAngularProjectTransformOptions } from '@rxap/workspace-ts-morph'; import { CoerceDialogComponentOptions } from './coerce-dialog-component'; export interface CoerceDialogTableActionComponentOptions extends CoerceDialogComponentOptions, TsMorphAngularProjectTransformOptions { operationId: string; tableName: string; scope?: string | null; } export declare function CoerceDialogTableActionComponentRule(options: CoerceDialogTableActionComponentOptions): import("@angular-devkit/schematics").Rule;