interface CpuInfo {
    manufacturer: CpuManufacturerInfo;
    brand: CpuBrandInfo;
    family: CpuFamilyInfo;
    model: CpuModelInfo;
    stepping: CpuSteppingInfo;
    vendor: CpuVendorInfo;
    socket: CpuSocketInfo;
    speedAsGhz: number;
    maxSpeedAsGhz: number;
    coresCount: number;
    phyiscalCoresCount: number;
    l1dCache: CpuCacheInfo;
    l1iCache: CpuCacheInfo;
    l2Cache: CpuCacheInfo;
    l3Cache: CpuCacheInfo;
    doesSupportVirtualization: boolean;
    flagsAsText: string;
}

Properties

manufacturer: CpuManufacturerInfo
stepping: CpuSteppingInfo
speedAsGhz: number
maxSpeedAsGhz: number
coresCount: number
phyiscalCoresCount: number
l1dCache: CpuCacheInfo
l1iCache: CpuCacheInfo
l2Cache: CpuCacheInfo
l3Cache: CpuCacheInfo
doesSupportVirtualization: boolean
flagsAsText: string