UNPKG

@nx/angular

Version:

The Nx Plugin for Angular contains executors, generators, and utilities for managing Angular applications and libraries within an Nx workspace. It provides: - Integration with libraries such as Storybook, Jest, ESLint, Tailwind CSS, Playwright and Cypre

18 lines 662 B
import type { Tree } from '@nx/devkit'; import type { Node } from 'typescript'; export declare class FileChangeRecorder { private readonly tree; private readonly filePath; private mutableContent; get content(): string; get originalContent(): string; constructor(tree: Tree, filePath: string); applyChanges(): void; hasChanged(): boolean; insertLeft(index: number, content: string): void; insertRight(index: number, content: string): void; remove(index: number, end: number): void; replace(node: Node, content: string): void; setContentToFileContent(): void; } //# sourceMappingURL=file-change-recorder.d.ts.map