Type alias HostSpecs

HostSpecs: {
    aeroGlassEnabled?: boolean;
    arch: string;
    cpus: CpuInfo[];
    gpu: GpuInfo;
    memory: number;
    name: string;
    screenSaver?: boolean;
}

Type declaration

  • Optional aeroGlassEnabled?: boolean

    True if Aero Glass theme is supported on Windows platforms

  • arch: string

    "x86" for 32-bit or "x86_64" for 64-bit

  • cpus: CpuInfo[]

    The same payload as Node's os.cpus()

  • gpu: GpuInfo

    The graphics card name

  • memory: number

    The same payload as Node's os.totalmem()

  • name: string

    The OS name and version/edition

  • Optional screenSaver?: boolean

    True if screensaver is running. Supported on Windows only.

Generated using TypeDoc