@zowe/cli
Version:
Zowe CLI is a command line interface (CLI) that provides a simple and streamlined way to interact with IBM z/OS.
14 lines (13 loc) • 334 B
TypeScript
/**
* This interface defines the map option that can be sent into the upload uss directory function
*/
export interface IUploadMap {
/**
* The indicator to upload the data set in binary mode
*/
binary?: boolean;
/**
* List of file names to be uploaded in binary or asci
*/
fileNames: string[];
}