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.

18 lines (17 loc) 267 B
/** * Interface for data sets * * @export */ export interface IDataSet { /** * The name of the data set * @type {string} */ dataSetName: string; /** * The name of the member * @type {string} */ memberName?: string; }