@broadcom/endevor-bridge-for-git-for-zowe-cli
Version:
Endevor Bridge for Git plug-in for Zowe CLI
23 lines (22 loc) • 434 B
TypeScript
export interface IWorkArea {
id: string;
lockElement: {
name: string;
type: string;
environment: string;
system: string;
subsystem: string;
};
environment: string;
systems: IWorkAreaSystem[];
}
interface IWorkAreaSystem {
from: string;
to: string;
subsystems: IWorkAreaSubsystem[];
}
interface IWorkAreaSubsystem {
from: string;
to: string;
}
export {};