@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) • 396 B
TypeScript
/**
* This interface defines the options that can be sent into the zfs function
*/
export interface IFsOptions {
/**
* Specifies the path where the file system is mounted
*/
path?: string;
/**
* Specifies the name of the mounted file system
*/
fsname?: string;
/**
* Specifies the maximum number of items to return
*/
maxLength?: number;
}