UNPKG

@adinsure-ops/ops-cli

Version:

Operations CLI for working with AdInsure

14 lines (13 loc) 538 B
import { AxiosResponse } from 'axios'; import CommandBase from '../../command.base.js'; export default class DownloadJmeter extends CommandBase<typeof DownloadJmeter> { static description: string; static usage: string; static examples: string[]; static flags: { output: import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>; }; private readonly url; downloadFile(): Promise<AxiosResponse<any, any>>; run(): Promise<void>; }