@taiga-ui/cdk
Version:
Base library for creating Angular components and applications using Taiga UI principles regarding of actual visual appearance
18 lines (17 loc) • 740 B
TypeScript
import { type DevkitFileSystem, type UpdateRecorder } from 'ng-morph';
import { type TuiSchema } from '../../../ng-add/schema';
import { type TemplateResource } from '../../interfaces/template-resource';
export declare function getAction<T>({ action, requiredData, }: {
action: ({ resource, fileSystem, recorder, data, }: {
fileSystem: DevkitFileSystem;
recorder: UpdateRecorder;
data: T;
resource: TemplateResource;
}) => void;
requiredData: T;
}): ({ resource, fileSystem, recorder, }: {
fileSystem: DevkitFileSystem;
recorder: UpdateRecorder;
resource: TemplateResource;
}) => void;
export declare function migrateTemplates(fileSystem: DevkitFileSystem, options: TuiSchema): void;