UNPKG

cli-stash

Version:

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

12 lines (11 loc) 443 B
import { BaseCommand } from "../../libs/core/baseCommand"; import { StashCLIResponse } from "../../libs/core/stashResponse"; import { Instance } from "../../libs/types"; export default class List extends BaseCommand { static description: string; static examples: string[]; static flags: { csv: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>; }; run(): Promise<StashCLIResponse<Instance[]>>; }