Interface EnvironmentInfo

interface EnvironmentInfo {
    Arch: string;
    Debug: boolean;
    OS: string;
    OSInfo: OSInfo;
    PlatformInfo: Object;
}

Properties

Arch: string

The architecture of the system.

Debug: boolean

True if the application is running in debug mode, otherwise false.

OS: string

The operating system in use.

OSInfo: OSInfo

Details of the operating system.

PlatformInfo: Object

Additional platform information.

Generated using TypeDoc