@adinsure-ops/ops-cli
Version:
Operations CLI for working with AdInsure
15 lines (14 loc) • 703 B
TypeScript
import { AxiosResponse } from 'axios';
import CommandBase from '../../command.base.js';
export default class DownloadKeycloak extends CommandBase<typeof DownloadKeycloak> {
static description: string;
static usage: string;
static examples: string[];
static flags: {
version: import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
output: import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
};
private readonly url;
downloadFile(version: string): Promise<AxiosResponse<any, any>>;
run(): Promise<void>;
}