@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) • 535 B
TypeScript
import { CoerceMethodClassOptions } from './coerce-method-class';
export interface CoerceTableActionOptions extends Omit<CoerceMethodClassOptions, 'name'> {
type: string;
tableName: string;
refresh?: boolean;
confirm?: boolean;
tooltip?: string | null;
errorMessage?: string | null;
successMessage?: string | null;
priority?: number | null;
checkFunction?: string | null;
}
export declare function CoerceTableActionRule(options: CoerceTableActionOptions): import("@angular-devkit/schematics").Rule;