UNPKG

314 BTypeScriptView Raw
1import { CommandLineInputs, CommandLineOptions, CommandMetadata } from '../definitions';
2import { Command } from '../lib/command';
3export declare class TelemetryCommand extends Command {
4 getMetadata(): Promise<CommandMetadata>;
5 run(inputs: CommandLineInputs, options: CommandLineOptions): Promise<void>;
6}