UNPKG

@zowe/cics-for-zowe-cli

Version:
35 lines 1.16 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 Resource_definition_1 = require("./resource/Resource.definition"); // Does not use the import in anticipation of some internationalization work to be done later. const strings = require("../-strings-/en").default.GET; /** * Definition for the "get" group of commands under the CICS plugin */ const definition = { name: "get", summary: strings.SUMMARY, description: strings.DESCRIPTION, type: "group", children: [Resource_definition_1.ResourceDefinition], passOn: [ { property: "options", value: CicsSession_1.CicsSession.CICS_CONNECTION_OPTIONS, merge: true, ignoreNodes: [{ type: "group" }], }, ], }; module.exports = definition; //# sourceMappingURL=Get.definition.js.map