@broadcom/sysview-for-zowe-cli
Version:
Zowe CLI plugin for SYSVIEW
32 lines (31 loc) • 788 B
TypeScript
/**
* Class to contain SYSVIEW constants
* @export
* @class Constants
*/
export declare class Constants {
/**
* Starting row of SYSVIEW data to display (row numbers start at 1)
* @static
* @memberof Constants
*/
static readonly DEFAULT_ROW_START: number;
/**
* Ending row of SYSVIEW data to display (row numbers start at 1)
* @static
* @memberof Constants
*/
static readonly DEFAULT_ROW_END: number;
/**
* Ending row of SYSVIEW data to display (row numbers start at 1)
* @static
* @memberof Constants
*/
static readonly DEFAULT_TIMEOUT: number;
/**
* Default basePath for SYSVIEW REST server
* @static
* @memberof Constants
*/
static readonly DEFAULT_BASE_PATH: string;
}