@zowe/cli
Version:
Zowe CLI is a command line interface (CLI) that provides a simple and streamlined way to interact with IBM z/OS.
25 lines (24 loc) • 626 B
TypeScript
import { ITaskWithStatus } from "@zowe/imperative";
/**
* This interface defines the options that can be sent to get a data set or USS file function
* @export
* @interface IGetOptions
*/
export interface IGetOptions {
/**
* The indicator to view the data set or USS file in binary mode
* @type {boolean}
*/
binary?: boolean;
/**
* The volume on which the data set is stored
* @type {string}
*/
volume?: string;
/**
* Task status object used by CLI handlers to create progress bars
* Optional
* @type {ITaskWithStatus}
*/
task?: ITaskWithStatus;
}