UNPKG

@zowe/cics-for-zowe-cli

Version:
36 lines 1.18 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. * */ const Urimap_definition_1 = require("./urimap/Urimap.definition"); const CicsSession_1 = require("../CicsSession"); // Does not use the import in anticipation of some internationalization work to be done later. const strings = require("../-strings-/en").default.ENABLE; /** * Definition for the "Enable" group of commands under the CICS plugin */ const definition = { name: "enable", aliases: ["en"], summary: strings.SUMMARY, description: strings.DESCRIPTION, type: "group", children: [Urimap_definition_1.UrimapDefinition], passOn: [ { property: "options", value: CicsSession_1.CicsSession.CICS_CONNECTION_OPTIONS, merge: true, ignoreNodes: [{ type: "group" }], }, ], }; module.exports = definition; //# sourceMappingURL=Enable.definition.js.map