@taiga-ui/cdk
Version:
Base library for creating Angular components and applications using Taiga UI principles regarding of actual visual appearance
11 lines (10 loc) • 489 B
TypeScript
import type { UpdateRecorder } from '@angular-devkit/schematics';
import type { DevkitFileSystem } from 'ng-morph';
import type { RemovableInput } from '../../interfaces/removable-input';
import type { TemplateResource } from '../../interfaces/template-resource';
export declare function removeInputs({ resource, recorder, fileSystem, data, }: {
fileSystem: DevkitFileSystem;
recorder: UpdateRecorder;
data: readonly RemovableInput[];
resource: TemplateResource;
}): void;