UNPKG

@zowe/cics-for-zowe-cli

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