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

10 lines (9 loc) 421 B
import { CoerceDataSourceClassOptions } from './coerce-data-source-class'; export interface CoerceTableDataSourceOptions extends CoerceDataSourceClassOptions { /** * The operation id to request a table page */ operationId: string; scope?: string | null; } export declare function CoerceTableDataSourceRule(options: Readonly<CoerceTableDataSourceOptions>): import("@angular-devkit/schematics").Rule;