UNPKG

@zowe/cli

Version:

Zowe CLI is a command line interface (CLI) that provides a simple and streamlined way to interact with IBM z/OS.

19 lines (18 loc) 305 B
export interface IUploadResult { /** * Upload status */ success: boolean; /** * Name of input file */ from: string; /** * Name of data set */ to: string; /** * Optional, any error encounter while uploading the data */ error?: any; }