@zowe/zos-files-for-zowe-sdk
Version:
Zowe SDK to interact with files and data sets on z/OS
20 lines • 541 B
TypeScript
import { IMountFsMode } from "./IMountFsMode";
import { IZosFilesOptions } from "../../../doc/IZosFilesOptions";
/**
* Interface for the options to the mount file-system API.
* @export
* @interface IMountFsOptions
*/
export interface IMountFsOptions extends IZosFilesOptions {
/**
* The file system type to mount
* @type {string}
*/
"fs-type"?: string;
/**
* The mode for mounting the file system
* @type {IMountFsMode}
*/
mode?: IMountFsMode;
}
//# sourceMappingURL=IMountFsOptions.d.ts.map