UNPKG

cli-stash

Version:

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

17 lines (16 loc) 830 B
import { Page, Group } from "stash-connector"; import { BaseCommand } from "../../../libs/core/baseCommand"; import { StashCLIResponse } from "../../../libs/core/stashResponse"; export default class List extends BaseCommand { static description: string; static examples: string[]; static flags: { filter: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined>; all: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>; limit: import("@oclif/core/lib/interfaces").OptionFlag<number>; start: import("@oclif/core/lib/interfaces").OptionFlag<number>; csv: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>; alias: import("@oclif/core/lib/interfaces").OptionFlag<string>; }; run(): Promise<StashCLIResponse<Page<Group>>>; }