UNPKG

@zowe/zos-files-for-zowe-sdk

Version:

Zowe SDK to interact with files and data sets on z/OS

18 lines 293 B
/** * Interface for data sets * * @export */ export interface IDataSet { /** * The name of the data set * @type {string} */ dsn: string; /** * The name of the member * @type {string} */ member?: string; } //# sourceMappingURL=IDataSet.d.ts.map