@zowe/zos-files-for-zowe-sdk
Version:
Zowe SDK to interact with files and data sets on z/OS
14 lines • 364 B
TypeScript
/**
* This interface defines the map option that can be sent into the upload uss directory function
*/
export interface IUploadFile {
/**
* The indicator to upload the data set in binary mode
*/
binary: boolean;
/**
* File name to be uploaded in binary or ascii
*/
fileName: string;
}
//# sourceMappingURL=IUploadFile.d.ts.map