UNPKG

cli-stash

Version:

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

15 lines (14 loc) 739 B
import { BaseCommand } from "../../../../libs/core/baseCommand"; import { StashCLIResponse } from "../../../../libs/core/stashResponse"; export default class Add extends BaseCommand { static description: string; static examples: string[]; static flags: { alias: import("@oclif/core/lib/interfaces").OptionFlag<string>; data: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined>; file: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined>; user: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined>; groups: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined>; }; run(): Promise<StashCLIResponse<any>>; }