UNPKG

@broadcom/endevor-bridge-for-git-for-zowe-cli

Version:

Endevor Bridge for Git plug-in for Zowe CLI

28 lines (27 loc) 1.34 kB
/** * Constants of Endevor Bridge for Git */ export declare class EBGConstants { static readonly GITKEEP_FILENAME = ".gitkeep"; static readonly GITIGNORE_FILENAME = ".gitignore"; static readonly METADATA_DIR = ".ebg"; static readonly WORK_AREAS_FILENAME = ".workAreas"; static readonly WORK_AREAS_FILENAME_V2 = "work-areas.json"; static readonly MAPPING_METADATA_FILENAME = "mapping.json"; static readonly BRIDGE_METATDATA_FILENAME = ".bridge.json"; static readonly ENDEVOR_DIR = ".endevor"; static readonly ENDEVOR_REPORTS_DIR = "reports"; static readonly DEFAULT_ENDEVOR_LISTING_DIR = "listings"; static readonly SYSTEM_DIR_INDEX = 1; static readonly SUBSYSTEM_DIR_INDEX = 2; static readonly TYPE_DIR_INDEX = 3; static readonly ELEMENT_NAME_INDEX = 4; static readonly BRANCH: string; static readonly BRANCHES: string; static getWorkAreasFilePath(gitLocation?: string): string; static getWorkAreasFilePathV2(gitLocation?: string): string; static getMappingMetadataFilePath(gitLocation?: string): string; static getBridgeMetadataFilePath(systemDir: string, subSystemDir: string, typeDir: string, gitLocation?: string): string; static getEndevorReportsDir(gitLocation?: string): string; static getEndevorListingsDir(gitLocation?: string): string; }