UNPKG

280 BTypeScriptView Raw
1import { Rule } from '@angular-devkit/schematics';
2/**
3 * Calls init _if_ the package does not already exist
4 */
5export declare function addPackageWithInit(packageName: string, testRunners?: {
6 unitTestRunner: 'jest' | 'none';
7 e2eTestRunner?: 'cypress' | 'none';
8}): Rule;