All Downloads are FREE. Search and download functionalities are using the official Maven repository.

chrome.system.cpu.bindings.Processor.scala Maven / Gradle / Ivy

package chrome.system.cpu.bindings

import scala.scalajs.js

@js.native
trait Processor extends js.Object {

  def usage: Processor.Usage = js.native

}

object Processor {

  @js.native
  trait Usage extends js.Object {

    val user: Double = js.native
    val kernel: Double = js.native
    val idle: Double = js.native
    val total: Double = js.native

  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy