@adinsure-ops/ops-cli
Version:
Operations CLI for working with AdInsure
19 lines (18 loc) • 1.18 kB
TypeScript
import CommandBase from '../../command.base.js';
export default class GitlabNextNightlyTag extends CommandBase<typeof GitlabNextNightlyTag> {
static description: string;
static usage: string;
static examples: string[];
static args: {
version: import("@oclif/core/lib/interfaces/parser.js").Arg<string, Record<string, unknown>>;
};
static flags: {
pat: import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
host: import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
project: import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
reference: import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
outputVersionOnly: import("@oclif/core/lib/interfaces/parser.js").BooleanFlag<boolean>;
dryRun: import("@oclif/core/lib/interfaces/parser.js").BooleanFlag<boolean>;
};
run(): Promise<undefined>;
}