UNPKG

@zowe/cli

Version:

Zowe CLI is a command line interface (CLI) that provides a simple and streamlined way to interact with IBM z/OS.

15 lines 484 B
import { IZosFilesOptions } from "@zowe/zos-files-for-zowe-sdk"; /** * These are the options to be used in file comaparison to handle the * binary, encoding, record and volumeSerial operations in the comparison process * * @exports * @interface ICompareFileOptions */ export interface ICompareFileOptions extends IZosFilesOptions { binary?: boolean; encoding?: string; record?: boolean; volumeSerial?: string; } //# sourceMappingURL=ICompareFileOptions.d.ts.map