@broadcom/endevor-bridge-for-git-for-zowe-cli
Version:
Endevor Bridge for Git plug-in for Zowe CLI
17 lines (16 loc) • 454 B
TypeScript
/// <reference types="node" />
import { IncomingHttpHeaders } from "http";
/**
* Fix the issue with the definition of IEndevorRestResponse from 'endevor-for-zowe-cli'.
* It should be used in our code if possible (temporary solution)
*/
export interface IEndevorResponse {
returnCode: number;
reasonCode: number;
reports: {
[key: string]: string;
};
data: any[];
messages: string[];
headers?: IncomingHttpHeaders;
}