All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.src.command-builder.architect-base-command-module.d.ts Maven / Gradle / Ivy

There is a newer version: 19.0.0
Show newest version
/**
 * @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.dev/license
 */
import { Architect, Target } from '@angular-devkit/architect';
import { WorkspaceNodeModulesArchitectHost } from '@angular-devkit/architect/node';
import { CommandModule, CommandModuleImplementation, CommandScope, OtherOptions } from './command-module';
import { Option } from './utilities/json-schema';
export interface MissingTargetChoice {
    name: string;
    value: string;
}
export declare abstract class ArchitectBaseCommandModule extends CommandModule implements CommandModuleImplementation {
    scope: CommandScope;
    protected readonly missingTargetChoices: MissingTargetChoice[] | undefined;
    protected runSingleTarget(target: Target, options: OtherOptions): Promise;
    private builderStatsToAnalyticsParameters;
    private _architectHost;
    protected getArchitectHost(): WorkspaceNodeModulesArchitectHost;
    private _architect;
    protected getArchitect(): Architect;
    protected getArchitectTargetOptions(target: Target): Promise;
    private warnOnMissingNodeModules;
    protected getArchitectTarget(): string;
    protected onMissingTarget(defaultMessage: string): Promise<1>;
    private getMissingTargetPackageToInstall;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy