/** * Author: * xtbj@cn.ibm.com */ import { ICommandDefinition } from "@zowe/imperative"; /** * [action] command defintion for the [action] two group. The [action] is of imperative command definition type * "group", which means it must have children. * * In this case, the action is "issue" - which will issue commands * * Property Summary: * ================= * "name" of the [action]. Always a verb (e.g. "copy") * "summary" will display when issuing the help for the [group] (e.g. zowe zos-files --help) * "type" is "group" which means it has children (the [objects]) * "children" is the set of child definitions (the [objects]) */ declare const RecordDefinition: ICommandDefinition; export = RecordDefinition;