Platform represents the platform (Arch/OS). Platform

interface Platform {
    Architecture?: string;
    OS?: string;
}

Properties

Properties

Architecture?: string

Architecture represents the hardware architecture (for example, x86_64).

OS?: string

OS represents the Operating System (for example, linux or windows).