import { ICommandDefinition } from "@zowe/imperative"; /** * [action] command definition 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 "list" - which will list files, etc. * * 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 CodeviewDefinition: ICommandDefinition; export = CodeviewDefinition;