package.src.commands.analytics.settings.cli.d.ts Maven / Gradle / Ivy
/**
* @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 {};