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.

12 lines 613 B
import { AbstractSession, ICommandArguments } from "@zowe/imperative"; import { CompareBaseHelper } from '../CompareBaseHelper'; import { CompareBaseHandler } from '../CompareBase.handler'; /** * Handler to compare a localfile and a dataset content * @export */ export default class LocalfileDatasetHandler extends CompareBaseHandler { getFile1(session: AbstractSession, args: ICommandArguments, helper: CompareBaseHelper): Promise<Buffer>; getFile2(session: AbstractSession, args: ICommandArguments, helper: CompareBaseHelper): Promise<Buffer>; } //# sourceMappingURL=LocalfileDataset.handler.d.ts.map