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.

11 lines (10 loc) 278 B
/** * This interface defines the options that can be sent into the copy data set function. */ export interface IMigrateOptions { /** * If true then the function waits for completion of the request. * If false the request is queued. */ wait?: boolean; }