@zowe/zos-files-for-zowe-sdk
Version:
Zowe SDK to interact with files and data sets on z/OS
22 lines • 643 B
TypeScript
/**
* This interface defines results of the download dir-from-uss command.
* @export
* @interface IDownloadUssDirResult
*/
export interface IDownloadUssDirResult {
/**
* List of file names that have downloaded successfully.
*/
downloaded: string[];
/**
* List of file names that were not downloaded because they already existed on the system.
*/
skippedExisting: string[];
/**
* Object containing key-value pairs of files and errors for uss files that failed to download.
*/
failedWithErrors: {
[key: string]: Error;
};
}
//# sourceMappingURL=IDownloadUssDirResult.d.ts.map