UNPKG

@adinsure-ops/ops-cli

Version:

Operations CLI for working with AdInsure

16 lines (15 loc) 827 B
import CommandBaseJira from '../../command.base.jira.js'; export default class JiraLabels extends CommandBaseJira { static description: string; static usage: string; static examples: string[]; static args: { issue: import("@oclif/core/lib/interfaces/parser.js").Arg<string, Record<string, unknown>>; }; static flags: { username: import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>; password: import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>; hostname: import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>; }; run(): Promise<void>; }