UNPKG

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

Version:

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

12 lines 438 B
import { IMigrateOptions } from "../../hMigrate"; /** * This interface defines the options that can be sent into the delete data set function. */ export interface IDeleteOptions extends IMigrateOptions { /** * If true then the function uses the PURGE=YES on ARCHDEL request. * If false (default) the function uses the PURGE=NO on ARCHDEL request. */ purge?: boolean; } //# sourceMappingURL=IDeleteOptions.d.ts.map