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.

35 lines 1.34 kB
"use strict"; /* * This program and the accompanying materials are made available under the terms of the * Eclipse Public License v2.0 which accompanies this distribution, and is available at * https://www.eclipse.org/legal/epl-v20.html * * SPDX-License-Identifier: EPL-2.0 * * Copyright Contributors to the Zowe Project. * */ function __export(m) { for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p]; } Object.defineProperty(exports, "__esModule", { value: true }); /** * 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(require("./src/api/Create")); __export(require("./src/api/Delete")); __export(require("./src/api/Start")); __export(require("./src/api/Properties")); __export(require("./src/api/ListWorkflows")); __export(require("./src/api/Cancel")); __export(require("./src/api/Definition")); __export(require("./src/api/ArchivedDelete")); __export(require("./src/api/ArchiveWorkflow")); __export(require("./src/api/ListArchivedWorkflows")); //# sourceMappingURL=index.js.map