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[];
}
