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

Properties

benchmark: string

Benchmark of the CPU.

coreCount: number

Number of CPU cores.

frequency: number

Frequency of the CPU in MHz.

name: string

Name of the CPU.

threadCount: number

Number CPU threads.