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

package.src.commands.analytics.settings.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 { Argv } from 'yargs';
import { CommandModule, CommandModuleImplementation, Options } from '../../../command-builder/command-module';
interface AnalyticsCommandArgs {
    global: boolean;
}
declare abstract class AnalyticsSettingModule extends CommandModule implements CommandModuleImplementation {
    longDescriptionPath?: string;
    builder(localYargs: Argv): Argv;
    abstract run({ global }: Options): Promise;
}
export declare class AnalyticsDisableModule extends AnalyticsSettingModule implements CommandModuleImplementation {
    command: string;
    aliases: string;
    describe: string;
    run({ global }: Options): Promise;
}
export declare class AnalyticsEnableModule extends AnalyticsSettingModule implements CommandModuleImplementation {
    command: string;
    aliases: string;
    describe: string;
    run({ global }: Options): Promise;
}
export declare class AnalyticsPromptModule extends AnalyticsSettingModule implements CommandModuleImplementation {
    command: string;
    describe: string;
    run({ global }: Options): Promise;
}
export {};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy