UNPKG

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

Version:

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

19 lines 527 B
import { IZosFilesOptions } from "../../../doc/IZosFilesOptions"; /** * This interface defines the options that can be sent into the zfs function */ export interface IFsOptions extends IZosFilesOptions { /** * 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; } //# sourceMappingURL=IFsOptions.d.ts.map