UNPKG

cli-stash

Version:

CLI application to manage and work with Atlassian Stash. Work with your Stash project and repositories from Command lines.

19 lines (18 loc) 896 B
/// <reference types="node" /> import { BaseCommand } from "../../libs/core/baseCommand"; import { StashCLIResponse } from "../../libs/core/stashResponse"; import { Instance } from "../../libs/types"; export default class Login extends BaseCommand { static loginRequired: boolean; static description: string; static examples: string[]; static flags: { alias: import("@oclif/core/lib/interfaces").OptionFlag<string>; csv: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>; username: import("@oclif/core/lib/interfaces").OptionFlag<string>; password: import("@oclif/core/lib/interfaces").OptionFlag<string>; host: import("@oclif/core/lib/interfaces").OptionFlag<import("url").URL>; override: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>; }; run(): Promise<StashCLIResponse<Instance>>; }