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.

19 lines (18 loc) 405 B
import { IMountFsMode } from "./IMountFsMode"; /** * Interface for the options to the mount file-system API. * @export * @interface IMountFsOptions */ export interface IMountFsOptions { /** * The file system type to mount * @type {string} */ "fs-type"?: string; /** * The mode for mounting the file system * @type {IMountFsMode} */ mode?: IMountFsMode; }