/** * Refer to the angular shematics library to let the dependency validator * know it is used.. * * require('@schematics/angular') */ import { Collection, Engine, Schematic } from '@angular-devkit/schematics'; import { FileSystemCollectionDesc, FileSystemSchematicDesc, NodeModulesEngineHost } from '@angular-devkit/schematics/tools'; import 'rxjs/add/operator/concatMap'; import 'rxjs/add/operator/map'; export declare function getEngineHost(): NodeModulesEngineHost; export declare function getEngine(): Engine; export declare function getCollection(collectionName: string): Collection; export declare function getSchematic(collection: Collection, schematicName: string): Schematic;