@broadcom/sysview-for-zowe-cli
Version:
Zowe CLI plugin for SYSVIEW
15 lines (14 loc) • 339 B
TypeScript
export interface IParseOptions {
/**
* Specify whether to display formatted instead of raw data
*/
pretty?: boolean;
/**
* Specify whether to show '0' values or a blank space
*/
blankIfZero?: boolean;
/**
* If the user specified fields, show them in that order
*/
fields?: string[];
}