UNPKG

ngx-bootstrap

Version:
18 lines (17 loc) 1.1 kB
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ import { Tree } from '@angular-devkit/schematics'; import { SchematicTestRunner, UnitTestTree } from '@angular-devkit/schematics/testing'; import * as ts from 'typescript'; import { workspaces } from '@angular-devkit/core'; export declare function getProjectTargetOptions(project: workspaces.ProjectDefinition, buildTarget: string): workspaces.TargetDefinition['options']; export declare function addPackageToPackageJson(host: Tree, pkg: string, version: string): Tree; export declare function createTestApp(runner: SchematicTestRunner, appOptions?: {}): Promise<UnitTestTree>; export declare function removePackageJsonDependency(tree: Tree, dependencyName: string): void; export declare function addModuleImportToRootModule(host: Tree, moduleName: string, src: string, project: workspaces.ProjectDefinition): void; export declare function getSourceFile(host: Tree, path: string): ts.SourceFile;