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.

14 lines (13 loc) 281 B
/** * This interface defines the map option that can be sent into the upload uss directory function */ export interface IUploadDir { /** * directory name */ dirName: string; /** * full path specification (on local host) */ fullPath: string; }