@zowe/cli
Version:
Zowe CLI is a command line interface (CLI) that provides a simple and streamlined way to interact with IBM z/OS.
22 lines (21 loc) • 386 B
TypeScript
/**
* The ZosFiles API response.
* @export
*/
export interface IZosFilesResponse {
/**
* indicates if the command ran successfully.
* @type {boolean}
*/
success: boolean;
/**
* The command response text.
* @type{string}
*/
commandResponse: string;
/**
* The api response object.
* @type{*}
*/
apiResponse?: any;
}