@zowe/imperative
Version:
framework for building configurable CLIs
20 lines • 414 B
TypeScript
/**
* Information interface for basic system information
* @export
* @interface ISystemInfo
*/
export interface ISystemInfo {
/**
* The system's CPU architecture
* @type {string}
* @memberof ISystemInfo
*/
arch: string;
/**
* The OS platform in use
* @type {string}
* @memberof ISystemInfo
*/
platform: string;
}
//# sourceMappingURL=ISystemInfo.d.ts.map