UNPKG

cli-stash

Version:

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

18 lines (17 loc) 912 B
import { Comment } from "stash-connector"; import { BaseCommand } from "../../../../../libs/core/baseCommand"; import { StashCLIResponse } from "../../../../../libs/core/stashResponse"; export default class Get extends BaseCommand { static description: string; static examples: string[]; static flags: { csv: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>; extended: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>; alias: import("@oclif/core/lib/interfaces").OptionFlag<string>; project: import("@oclif/core/lib/interfaces").OptionFlag<string>; slug: import("@oclif/core/lib/interfaces").OptionFlag<string>; pull: import("@oclif/core/lib/interfaces").OptionFlag<number>; comment: import("@oclif/core/lib/interfaces").OptionFlag<number | undefined>; }; run(): Promise<StashCLIResponse<Comment>>; }