UNPKG

@lightweightform/theme-common

Version:

Common utilities for Lightweightform themes

11 lines (10 loc) 409 B
import { Path } from '@angular-devkit/core'; import { Tree } from '@angular-devkit/schematics'; import { Change } from '@schematics/angular/utility/change'; /** * Apply changes to a file. * @param host Source tree. * @param path Path on where to apply changes. * @param changes List of changes to apply. */ export declare function applyChanges(host: Tree, path: Path, changes: Change[]): void;