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

package.src.commands.run.cli.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 { Target } from '@angular-devkit/architect';
import { Argv } from 'yargs';
import { ArchitectBaseCommandModule } from '../../command-builder/architect-base-command-module';
import { CommandModuleImplementation, CommandScope, Options, OtherOptions } from '../../command-builder/command-module';
export interface RunCommandArgs {
    target: string;
}
export default class RunCommandModule extends ArchitectBaseCommandModule implements CommandModuleImplementation {
    scope: CommandScope;
    command: string;
    describe: string;
    longDescriptionPath: string;
    builder(argv: Argv): Promise>;
    run(options: Options & OtherOptions): Promise;
    protected makeTargetSpecifier(options?: Options): Target | undefined;
    /** @returns a sorted list of target specifiers to be used for auto completion. */
    private getTargetChoices;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy