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.

20 lines (19 loc) 770 B
/** * Use the index.ts to export any public facing APIs/intefaces/etc. * * If your plugin introduces a set of APIs/functions that others would find useful when building node apps * (or editor extensions, etc.) export them here. * * For example, Zowe CLI offers Jobs APIs that can be invoke programmatically from a VS code extension to create * a Job viewer/tree extension. */ export * from "./src/api/Create"; export * from "./src/api/Delete"; export * from "./src/api/Start"; export * from "./src/api/Properties"; export * from "./src/api/ListWorkflows"; export * from "./src/api/Cancel"; export * from "./src/api/Definition"; export * from "./src/api/ArchivedDelete"; export * from "./src/api/ArchiveWorkflow"; export * from "./src/api/ListArchivedWorkflows";