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) 364 B
export interface FileFilters { onlyFolders?: boolean; onlyFiles?: boolean; absolutePath?: boolean; extensions?: string[]; } export interface Instance { alias: string; host: string; token: string; } export interface CLIProjectInput { key: string; name: string; description: string; avatarFile: string; }