rangoo94/bestest

View on GitHub
packages/detect-environment/lib/interfaces/CpuInformationInterface.ts

Summary

Maintainability
A
0 mins
Test Coverage
interface CpuInformationInterface {
  model: string
  /** in MHz */
  speed: number
  /** Number of virtual cores with such specification */
  cores: number
}

export {
  CpuInformationInterface
}