interface CPU {
    coreCount: number;
    frequency: number;
    name: string;
    threadCount: number;
}

Properties

coreCount: number

Number of cores of the CPU.

frequency: number

Frequency of the CPU.

name: string

Name of CPU.

threadCount: number

Number of threads of the CPU.