6 lines
205 B
TypeScript
6 lines
205 B
TypeScript
import type yargs from 'yargs-parser';
|
|
interface TelemetryOptions {
|
|
flags: yargs.Arguments;
|
|
}
|
|
export declare function update(subcommand: string, { flags }: TelemetryOptions): Promise<void>;
|
|
export {};
|